Example #1
0
 function test_wordToArray()
 {
     $test_Scrabble = new Scrabble();
     $input = "hello";
     $result = $test_Scrabble->wordToArray($input);
     $this->AssertEquals(['h', 'e', 'l', 'l', 'o'], $result);
 }