Skip to content

Commit 1fa248e

Browse files
committed
Adding unloadDict() method
1 parent cee195c commit 1fa248e

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/BoggleSolver.php

+5
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,11 @@ public function findWordsFromOneTile($boardPtr, $dictPtr = null, &$words = array
276276
return $words;
277277
}
278278

279+
public function unloadDict()
280+
{
281+
$this->dict = array();
282+
}
283+
279284
// @codeCoverageIgnoreStart
280285
public function getDictFileContents()
281286
{

tests/BoggleSolver/BoggleSolverTest.php

+5
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ public function testLoadDictBuildsDictionary()
5353
);
5454

5555
$this->assertEquals($expectedDict, $solverMock->dict);
56+
57+
// lazy
58+
$solverMock->unloadDict();
59+
60+
$this->assertEquals(array(), $solverMock->dict);
5661
}
5762

5863
public function testLoadBoardLoadsBoard()

0 commit comments

Comments
 (0)