Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | class StylesheetProviderTest extends AbstractTestCase { |
||
26 | |||
27 | /** |
||
28 | * Test getStylesheets() |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | public function testGetStylesheets(): void { |
||
33 | |||
34 | $obj = new StylesheetProvider(); |
||
35 | |||
36 | $this->assertEquals([], $obj->getStylesheets()); |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * Test __construct() |
||
41 | * |
||
42 | * @return void |
||
43 | */ |
||
44 | public function test__construct(): void { |
||
52 | } |
||
53 | } |
||
54 |