public void RefundTest()
 {
     ANetBillingProvider target = new ANetBillingProvider(); // TODO: Initialize to an appropriate value
     GatewayInfo gateway = null; // TODO: Initialize to an appropriate value
     GatewayTypeInfo gatewayType = null; // TODO: Initialize to an appropriate value
     Guid orderId = new Guid(); // TODO: Initialize to an appropriate value
     ICustomer customer = null; // TODO: Initialize to an appropriate value
     CreditCardInfo card = null; // TODO: Initialize to an appropriate value
     string refID = string.Empty; // TODO: Initialize to an appropriate value
     TransactionInfo transaction = null; // TODO: Initialize to an appropriate value
     bool testTransaction = false; // TODO: Initialize to an appropriate value
     target.Refund(gateway, gatewayType, orderId, customer, card, refID, transaction, testTransaction);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void ProcessSubscriptionTest()
 {
     ANetBillingProvider target = new ANetBillingProvider(); // TODO: Initialize to an appropriate value
     SubscriptionInfo sub = null; // TODO: Initialize to an appropriate value
     SubscriptionInfo subExpected = null; // TODO: Initialize to an appropriate value
     GatewayInfo gateway = null; // TODO: Initialize to an appropriate value
     GatewayTypeInfo gatewayType = null; // TODO: Initialize to an appropriate value
     ICustomer customer = null; // TODO: Initialize to an appropriate value
     CreditCardInfo card = null; // TODO: Initialize to an appropriate value
     bool isTrial = false; // TODO: Initialize to an appropriate value
     bool testTransaction = false; // TODO: Initialize to an appropriate value
     TransactionInfo expected = null; // TODO: Initialize to an appropriate value
     TransactionInfo actual;
     actual = target.ProcessSubscription(ref sub, gateway, gatewayType, customer, card, isTrial, testTransaction);
     Assert.AreEqual(subExpected, sub);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void InitializeTest()
 {
     ANetBillingProvider target = new ANetBillingProvider(); // TODO: Initialize to an appropriate value
     string name = string.Empty; // TODO: Initialize to an appropriate value
     NameValueCollection config = null; // TODO: Initialize to an appropriate value
     target.Initialize(name, config);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void ANetBillingProviderConstructorTest()
 {
     ANetBillingProvider target = new ANetBillingProvider();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void PreAuthorizeTest()
 {
     ANetBillingProvider target = new ANetBillingProvider(); // TODO: Initialize to an appropriate value
     GatewayInfo gateway = null; // TODO: Initialize to an appropriate value
     GatewayTypeInfo gatewayType = null; // TODO: Initialize to an appropriate value
     Guid orderId = new Guid(); // TODO: Initialize to an appropriate value
     ICustomer customer = null; // TODO: Initialize to an appropriate value
     CreditCardInfo card = null; // TODO: Initialize to an appropriate value
     Decimal amount = new Decimal(); // TODO: Initialize to an appropriate value
     bool testTransaction = false; // TODO: Initialize to an appropriate value
     TransactionInfo expected = null; // TODO: Initialize to an appropriate value
     TransactionInfo actual;
     actual = target.PreAuthorize(gateway, gatewayType, orderId, customer, card, amount, testTransaction);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }