Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class DiceGraphicTest extends TestCase |
||
12 | { |
||
13 | /** |
||
14 | * Test that the DiceGraphic class is a subclass of Dice. |
||
15 | */ |
||
16 | public function testInheritanceFromDice(): void |
||
17 | { |
||
18 | $dice = new DiceGraphic(); |
||
19 | $this->assertInstanceOf(\App\Dice\Dice::class, $dice); |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * Test that getAsString returns a valid Unicode symbol |
||
24 | * representing the rolled dice value. |
||
25 | */ |
||
26 | public function testGetAsString(): void |
||
35 | } |
||
36 | } |
||
37 |