public void PlanOneMealIdentifierEmpty() { var result = NextOrder.GetChoice(string.Empty, this.plan); Assert.IsNotNull(result); Assert.AreEqual(0, result.Count); }
public void PlanEmptyIdentifierEmpty() { this.plan = new Plan(); var result = NextOrder.GetChoice(string.Empty, this.plan); Assert.IsNotNull(result); }
public void PlanOnlyNameIdentifierEmpty() { this.plan = new Plan(); var planDay = new PlanDay() { Name = "Day1" }; this.plan.Planday = new System.Collections.Generic.List <PlanDay> { planDay, }; var result = NextOrder.GetChoice(string.Empty, this.plan); Assert.IsNotNull(result); Assert.AreEqual(0, result.Count); }
public void PlanNullIdentifierEmpty() { var result = NextOrder.GetChoice(string.Empty, null); Assert.IsNotNull(result); }