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

            Assert.Equal(" waits patiently for an unsuspecting victim in the water", crocionel.Hunt());
        }
Beispiel #2
0
        public void CrocodileCanInheritHunt()
        {
            Crocodile crocodile = new Crocodile();

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