Exemplo n.º 1
0
        public void test_strenght_bcoffe()
        {
            Black_coffee ins = new Black_coffee(0);

            string strenght = ins.Strength();

            Assert.AreEqual("Strong", strenght);
        }
Exemplo n.º 2
0
        public void test_price_bcoffe()
        {
            Black_coffee ins = new Black_coffee(0);

            int price = ins.price();

            Assert.AreEqual(20, price);
        }