| Total Complexity | 4 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class StandardTest extends \PHPUnit\Framework\TestCase |
||
| 13 | { |
||
| 14 | private $object; |
||
| 15 | private $context; |
||
| 16 | |||
| 17 | |||
| 18 | protected function setUp() : void |
||
| 24 | } |
||
| 25 | |||
| 26 | |||
| 27 | protected function tearDown() : void |
||
| 30 | } |
||
| 31 | |||
| 32 | |||
| 33 | public function testHeader() |
||
| 34 | { |
||
| 35 | $output = $this->object->header(); |
||
| 36 | |||
| 37 | $this->assertStringContainsString( '<link rel="stylesheet"', $output ); |
||
| 38 | $this->assertStringContainsString( '<script defer', $output ); |
||
| 39 | } |
||
| 40 | |||
| 41 | |||
| 42 | public function testBody() |
||
| 45 | } |
||
| 46 | } |
||
| 47 |