We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 4 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
11 | class RaceDetailsTest extends \PHPUnit\Framework\TestCase { |
||
12 | |||
13 | public function test_getShortDescription() : void { |
||
14 | // Check that a description exists for all playable races |
||
15 | foreach (Race::getPlayableIDs() as $raceID) { |
||
16 | self::assertNotEmpty(RaceDetails::getShortDescription($raceID)); |
||
17 | } |
||
18 | } |
||
19 | |||
20 | public function test_getLongDescription() : void { |
||
24 | } |
||
25 | } |
||
28 |