Ejemplo n.º 1
0
        public void setPrice_cost999_void()
        {
            Shaurma shaurma = new Shaurma();

            shaurma.setPrice(999);
            Assert.That(shaurma.price(1), Is.EqualTo("999$"));
        }
Ejemplo n.º 2
0
        public void setPrice_cost10_void()
        {
            Shaurma shaurma = new Shaurma();

            shaurma.setPrice(10);
            Assert.That(shaurma.price(1), Is.EqualTo("10$"));
        }