public void createTest()
 {
     Customer_Accessor target = new Customer_Accessor(); // TODO: Initialize to an appropriate value
     string notes = string.Empty; // TODO: Initialize to an appropriate value
     target.create(notes);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void CurrentMealsTest()
 {
     Customer_Accessor target = new Customer_Accessor(); // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     target.CurrentMeals = expected;
     actual = target.CurrentMeals;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void CustomerConstructorTest()
 {
     Customer_Accessor target = new Customer_Accessor();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void PlanIdTest()
 {
     Customer_Accessor target = new Customer_Accessor(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.PlanId = expected;
     actual = target.PlanId;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void saveTest()
 {
     Customer_Accessor target = new Customer_Accessor(); // TODO: Initialize to an appropriate value
     string notes = string.Empty; // TODO: Initialize to an appropriate value
     string MunchTransaction = string.Empty; // TODO: Initialize to an appropriate value
     string strMunchTransAmount = string.Empty; // TODO: Initialize to an appropriate value
     target.save(notes, MunchTransaction, strMunchTransAmount);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void MunchMoneyTest()
 {
     Customer_Accessor target = new Customer_Accessor(); // TODO: Initialize to an appropriate value
     Decimal expected = new Decimal(); // TODO: Initialize to an appropriate value
     Decimal actual;
     target.MunchMoney = expected;
     actual = target.MunchMoney;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void MealCostTest()
 {
     Customer_Accessor target = new Customer_Accessor(); // TODO: Initialize to an appropriate value
     AMealCost expected = null; // TODO: Initialize to an appropriate value
     AMealCost actual;
     target.MealCost = expected;
     actual = target.MealCost;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void isStudentTest()
 {
     Customer_Accessor target = new Customer_Accessor(); // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.isStudent();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void initTest()
 {
     Customer_Accessor target = new Customer_Accessor(); // TODO: Initialize to an appropriate value
     target.init();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void doQueriesInTransactionTest()
 {
     Customer_Accessor target = new Customer_Accessor(); // TODO: Initialize to an appropriate value
     string connection = string.Empty; // TODO: Initialize to an appropriate value
     string[] queries = null; // TODO: Initialize to an appropriate value
     target.doQueriesInTransaction(connection, queries);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }