We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 846dc2b commit 852b3b2Copy full SHA for 852b3b2
tests/BoggleSolver/BoggleSolverTest.php
@@ -146,20 +146,18 @@ public function testFindWords()
146
$solverMock->boardLookup = array('A' => 1);
147
$solverMock->size = 3;
148
149
- $solverMock->loadBoard("X X A L L X L L X");
+ $solverMock->loadBoard("X X A L L X L L R");
150
151
// X X A
152
// L L X
153
- // L L X
+ // L L R
154
155
$result = $solverMock->findWords();
156
157
$expected = array(
158
'XXX' => array(
159
array(0, 1, 5),
160
- array(1, 5, 8),
161
array(5, 1, 0),
162
- array(8, 5, 1),
163
),
164
'ALL' => array(
165
array(2, 4, 7),
0 commit comments