Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
44 | public function test__construct(): void { |
||
45 | |||
46 | $this->assertEquals("wbw.core.provider.stylesheet", StylesheetProvider::SERVICE_NAME); |
||
47 | |||
48 | $obj = new StylesheetProvider(); |
||
49 | |||
50 | $this->assertInstanceOf(ProviderInterface::class, $obj); |
||
51 | $this->assertInstanceOf(StylesheetProviderInterface::class, $obj); |
||
52 | } |
||
54 |