Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function testConstructorRequiredAssignments() |
||
12 | { |
||
13 | $url = 'http://example.com'; |
||
14 | |||
15 | $obj = new Server($url); |
||
16 | |||
17 | $this->assertInstanceOf(ExtensibleInterface::class, $obj); |
||
18 | $this->assertEquals($url, $obj->url); |
||
19 | $this->assertNull($obj->description); |
||
20 | $this->assertNull($obj->variables); |
||
21 | } |
||
41 |