Feed() public method

public Feed ( ) : void
return void
Exemplo n.º 1
0
        public void MutableCatTest()
        {
            var cat = new MutableCat();

            cat.Feed();
            Assert.AreEqual(false, cat.Hungry);
        }
Exemplo n.º 2
0
 public void MutableCatTest()
 {
     var cat = new MutableCat();
     cat.Feed();
     Assert.AreEqual(false, cat.Hungry);
 }