public void ProvidersTest()
 {
     BillingControllerSection target = new BillingControllerSection(); // TODO: Initialize to an appropriate value
     ProviderSettingsCollection actual;
     actual = target.Providers;
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void DefaultProviderTest()
 {
     BillingControllerSection target = new BillingControllerSection(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.DefaultProvider = expected;
     actual = target.DefaultProvider;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void BillingControllerSectionConstructorTest()
 {
     BillingControllerSection target = new BillingControllerSection();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }