static void Main(string[] args) { Example e = new Example(); System.Console.WriteLine(e.WhatsTheWord()); System.Console.WriteLine(e.IsTheWord("vird")); System.Console.WriteLine(e.IsTheWord("bird")); }
public void WhatsTheWordTest() { Example example = new Example(); string theWord = example.WhatsTheWord(); Assert.IsTrue("bird" == theWord); }