Ejemplo n.º 1
0
        public void test_strenght_fwhite()
        {
            Flat_white ins = new Flat_white(0);

            string strenght = ins.Strength();

            Assert.AreEqual("Medium", strenght);
        }
Ejemplo n.º 2
0
        public void test_price_fwhite()
        {
            Flat_white ins = new Flat_white(0);

            int price = ins.price();

            Assert.AreEqual(20, price);
        }