public void CorrectLargeDescription() { Triceritots t = new Triceritots(); t.MakeLarge(); Assert.Equal("Large Triceritots", t.Description); }
public void CorrectLargeToString() { Triceritots t = new Triceritots(); t.MakeLarge(); Assert.Equal("Large Triceritots", t.ToString()); }
public void ShouldHaveCorrectTotalCost3() { Order o = new Order(); o.Add(new CretaceousCombo(new PterodactylWings())); Triceritots t = new Triceritots(); t.MakeLarge(); o.Add(t); Assert.Equal <double>(12.54, o.TotalCost); }