public void ShouldBeAbleToSetFlavorToOrange() { Sodasaurus s = new DinoDiner.Menu.Sodasaurus(); s.Flavor = SodasaurusFlavor.Orange; Assert.Equal <SodasaurusFlavor>(SodasaurusFlavor.Orange, s.Flavor); }
public void ShouldBeAbleToSetFlavorToCherry() { Sodasaurus s = new DinoDiner.Menu.Sodasaurus(); s.Flavor = SodasaurusFlavor.Cherry; Assert.Equal <SodasaurusFlavor>(SodasaurusFlavor.Cherry, s.Flavor); }
public void ShouldBeAbleToSetFlavorToRootBeer() { Sodasaurus s = new DinoDiner.Menu.Sodasaurus(); s.Flavor = SodasaurusFlavor.RootBeer; Assert.Equal <SodasaurusFlavor>(SodasaurusFlavor.RootBeer, s.Flavor); }
public void ShouldBeAbleToSetFlavorToVanilla() { Sodasaurus s = new DinoDiner.Menu.Sodasaurus(); s.Flavor = SodasaurusFlavor.Vanilla; Assert.Equal <SodasaurusFlavor>(SodasaurusFlavor.Vanilla, s.Flavor); }
public void TotalCostShouldBeCorrect() { Order order = new Order(); Sodasaurus soda = new Sodasaurus(); order.Add(soda); TRexKingBurger trex = new TRexKingBurger(); order.Add(trex); Fryceritops fry = new Fryceritops(); order.Add(fry); Assert.Equal(12.034, order.TotalCost); }
public void SalesTaxShouldBeCorrect() { Order order = new Order(); Sodasaurus soda = new Sodasaurus(); order.Add(soda); TRexKingBurger trex = new TRexKingBurger(); order.Add(trex); Fryceritops fry = new Fryceritops(); order.Add(fry); Assert.Equal(1.094, order.SalesTaxCost); }
/// <summary> /// Menu sets up instances of all iteam to put in AvailableMenuItems /// </summary> public Menu() { Brontowurst b = new Brontowurst(); AvailableMenuItems.Add(b.ToString()); DinoNuggets d = new DinoNuggets(); AvailableMenuItems.Add(d.ToString()); PrehistoricPBJ pr = new PrehistoricPBJ(); AvailableMenuItems.Add(pr.ToString()); PterodactylWings pt = new PterodactylWings(); AvailableMenuItems.Add(pt.ToString()); SteakosaurusBurger st = new SteakosaurusBurger(); AvailableMenuItems.Add(st.ToString()); TRexKingBurger tr = new TRexKingBurger(); AvailableMenuItems.Add(tr.ToString()); VelociWrap ve = new VelociWrap(); AvailableMenuItems.Add(ve.ToString()); Fryceritops fr = new Fryceritops(); AvailableMenuItems.Add(fr.ToString()); Triceritots tri = new Triceritots(); AvailableMenuItems.Add(tri.ToString()); MeteorMacAndCheese mc = new MeteorMacAndCheese(); AvailableMenuItems.Add(mc.ToString()); MezzorellaSticks me = new MezzorellaSticks(); AvailableMenuItems.Add(me.ToString()); Tyrannotea ty = new Tyrannotea(); AvailableMenuItems.Add(ty.ToString()); Sodasaurus so = new Sodasaurus(); AvailableMenuItems.Add(so.ToString()); JurassicJava jr = new JurassicJava(); AvailableMenuItems.Add(jr.ToString()); Water wa = new Water(); AvailableMenuItems.Add(wa.ToString()); Ingredients = AvailableMenuItems; }
public void SubtotalCannotGoNegative() { Order order = new Order(); Sodasaurus soda = new Sodasaurus(); order.Add(soda); TRexKingBurger trex = new TRexKingBurger(); order.Add(trex); Fryceritops fry = new Fryceritops(); order.Add(fry); soda.Price = -100; Assert.Equal(order.SubtotalCost, -1); }
/// <summary> /// Constructor for the creation of a combo /// </summary> /// <param name="entree"> the kind of entree </param> public CretaceousCombo(Entree entree) { Entree = entree; Side = new Fryceritops(); Drink = new Sodasaurus(); }
/// <summary> /// This method returns a list of all menu items /// </summary> /// <returns>This string is a list of all the menu items</returns> public override String ToString() { StringBuilder sb = new StringBuilder(); JurassicJava j = new JurassicJava(); sb.Append(j.ToString() + "\n"); Sodasaurus s = new Sodasaurus(); sb.Append(s.ToString() + "\n"); Tyrannotea t = new Tyrannotea(); sb.Append(t.ToString() + "\n"); Water w = new Water(); sb.Append(w.ToString() + "\n"); Brontowurst b = new Brontowurst(); sb.Append(b.ToString() + "\n"); DinoNuggets d = new DinoNuggets(); sb.Append(d.ToString() + "\n"); PrehistoricPBJ p = new PrehistoricPBJ(); sb.Append(p.ToString() + "\n"); PterodactylWings pt = new PterodactylWings(); sb.Append(pt.ToString() + "\n"); SteakosaurusBurger st = new SteakosaurusBurger(); sb.Append(st.ToString() + "\n"); TRexKingBurger tk = new TRexKingBurger(); sb.Append(tk.ToString() + "\n"); VelociWrap v = new VelociWrap(); sb.Append(v.ToString() + "\n"); Fryceritops f = new Fryceritops(); sb.Append(f.ToString() + "\n"); MeteorMacAndCheese m = new MeteorMacAndCheese(); sb.Append(m.ToString() + "\n"); MezzorellaSticks mz = new MezzorellaSticks(); sb.Append(mz.ToString() + "\n"); Triceritots tr = new Triceritots(); sb.Append(tr.ToString() + "\n"); CretaceousCombo cc1 = new CretaceousCombo(new Brontowurst()); sb.Append(cc1.ToString() + "\n"); CretaceousCombo cc2 = new CretaceousCombo(new DinoNuggets()); sb.Append(cc2.ToString() + "\n"); CretaceousCombo cc3 = new CretaceousCombo(new PrehistoricPBJ()); sb.Append(cc3.ToString() + "\n"); CretaceousCombo cc4 = new CretaceousCombo(new PterodactylWings()); sb.Append(cc4.ToString() + "\n"); CretaceousCombo cc5 = new CretaceousCombo(new SteakosaurusBurger()); sb.Append(cc5.ToString() + "\n"); CretaceousCombo cc6 = new CretaceousCombo(new TRexKingBurger()); sb.Append(cc6.ToString() + "\n"); CretaceousCombo cc7 = new CretaceousCombo(new VelociWrap()); sb.Append(cc7.ToString() + "\n"); return(sb.ToString()); }