Example #1
0
 function test_toLowerCase()
 {
     $test_Scrabble = new Scrabble();
     $input = "Hello";
     $result = $test_Scrabble->toLowerCase($input);
     $this->AssertEquals("hello", $result);
 }