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