Ejemplo n.º 1
0
 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"));
 }
Ejemplo n.º 2
0
 public void WhatsTheWordTest()
 {
     Example example = new Example();
       string theWord = example.WhatsTheWord();
       Assert.IsTrue("bird" == theWord);
 }