Ejemplo n.º 1
0
 public void Fly()
 {
     //调用母鸡飞
     chicken.Fly();
 }
Ejemplo n.º 2
0
        public void CanChickenUseIfly()
        {
            Chicken chicken = new Chicken();

            Assert.True(chicken.Fly());
        }