Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created February 12, 2018 12:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelovstanton/a6069310d85572f58f726615bb4b461e to your computer and use it in GitHub Desktop.
Save angelovstanton/a6069310d85572f58f726615bb4b461e to your computer and use it in GitHub Desktop.
TestCase.AddTestCase("Telerik Platform Starter> Buy Telerik Platform");
XmlBillingInfo billingInfo = xmlInvoice.BillingInfo;
TestCase.AddActionStep("Type Billing First Name = {0}", billingInfo.FirstName);
billingInfoMap.BillingFirstName = billingInfo.FirstName;
TestCase.AddActionStep("Type Billing Last Name = {0}", billingInfo.LastName);
billingInfoMap.BillingLastName = billingInfo.LastName;
TestCase.AddActionStep("Type Billing Email = {0}", billingInfo.Email);
billingInfoMap.BillingEmail = billingInfo.Email;
TestCase.AddActionStep("Type Billing Company = {0}", billingInfo.CompanyName);
billingInfoMap.BillingCompany = billingInfo.CompanyName;
TestCase.AddActionStep("Type Billing Phone = {0}", billingInfo.Phone);
billingInfoMap.BillingPhone = billingInfo.Phone;
TestCase.AddActionStep("Type Billing Address = {0}", billingInfo.Address);
billingInfoMap.BillingAddress = billingInfo.Address;
TestCase.AddActionStep("Type Billing City = {0}", billingInfo.City);
billingInfoMap.BillingCity = billingInfo.City;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment