diff options
Diffstat (limited to 'test/ApiTest.php')
-rw-r--r-- | test/ApiTest.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/ApiTest.php b/test/ApiTest.php index 93ed024..158c9dc 100644 --- a/test/ApiTest.php +++ b/test/ApiTest.php @@ -18,6 +18,15 @@ class ApiTest extends TestCase { } } + /** + * @dataProvider generatedDataProvider + */ + public function testBoardCounts($input, $expected) { + $input['boards'] = strval($input['over39_boards'] ? rand(40, 60) : rand(1, 39)); + unset($input['over39_boards']); + $this->testRandomResults($input, $expected); + } + public function generatedDataProvider() { $contents = file(dirname(__FILE__) . '/tests.txt'); $count = count($contents) / 2; |