Esempio n. 1
0
        public void CorrectLargeDescription()
        {
            Triceritots t = new Triceritots();

            t.MakeLarge();
            Assert.Equal("Large Triceritots", t.Description);
        }
Esempio n. 2
0
        public void CorrectLargeToString()
        {
            Triceritots t = new Triceritots();

            t.MakeLarge();
            Assert.Equal("Large Triceritots", t.ToString());
        }
Esempio n. 3
0
        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);
        }