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