public void TestFishingBoatCatchPhrase() { FishingBoat fishingBoat = new FishingBoat(); string phrase = fishingBoat.CatchPhrase(); Assert.Equal("A day of fishing is better than a day at work", phrase); }
static void FishingBoatMessage() { FishingBoat fishingBoat = new FishingBoat(); string phrase = fishingBoat.Description(); Console.WriteLine(phrase); phrase = fishingBoat.UsedFor(); Console.WriteLine(phrase); phrase = fishingBoat.CatchPhrase(); Console.WriteLine(phrase); Console.WriteLine(" "); }