Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class HeaderUnitTest extends TestCase |
||
10 | { |
||
11 | public function testConstructorRequiredAssignments() |
||
12 | { |
||
13 | $obj = new Header(); |
||
14 | |||
15 | $this->assertInstanceOf(ExtensibleInterface::class, $obj); |
||
16 | $this->assertNull($obj->description); |
||
17 | } |
||
18 | |||
19 | public function testConstructorAllAssignments() |
||
30 | } |
||
31 | } |
||
32 |