示例#1
0
        public void ShouldHunt()
        {
            Crocodile crocionel = new Crocodile();

            Assert.Equal(" waits patiently for an unsuspecting victim in the water", crocionel.Hunt());
        }
示例#2
0
文件: UnitTest1.cs 项目: mikefili/Zoo
        public void CrocodileCanInheritHunt()
        {
            Crocodile crocodile = new Crocodile();

            Assert.True(crocodile.Hunt());
        }