| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | class SyntaxHighlighterProviderTest extends AbstractTestCase { |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Test getSyntaxHighlighterStrings() |
||
| 30 | * |
||
| 31 | * @return void |
||
| 32 | */ |
||
| 33 | public function testGetSyntaxHighlighterStrings(): void { |
||
| 34 | |||
| 35 | $obj = new SyntaxHighlighterProvider($this->translator); |
||
| 36 | |||
| 37 | $this->assertInstanceOf(SyntaxHighlighterStrings::class, $obj->getSyntaxHighlighterStrings()); |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Test __construct() |
||
| 42 | * |
||
| 43 | * @return void |
||
| 44 | */ |
||
| 45 | public function test__construct(): void { |
||
| 53 | } |
||
| 54 | } |
||
| 55 |