public void findTest()
 {
     MealPlan_Accessor target = new MealPlan_Accessor(); // TODO: Initialize to an appropriate value
     string @where = string.Empty; // TODO: Initialize to an appropriate value
     target.find(@where);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void MealsPerWeekTest()
 {
     MealPlan_Accessor target = new MealPlan_Accessor(); // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     target.MealsPerWeek = expected;
     actual = target.MealsPerWeek;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void MealPlanConstructorTest()
 {
     MealPlan_Accessor target = new MealPlan_Accessor();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void initTest()
 {
     MealPlan_Accessor target = new MealPlan_Accessor(); // TODO: Initialize to an appropriate value
     target.init();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void PlanIdTest()
 {
     MealPlan_Accessor target = new MealPlan_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 MunchMoneyTest()
 {
     MealPlan_Accessor target = new MealPlan_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.");
 }