Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class ClientTest extends TestCase |
||
18 | { |
||
19 | private Client $object; |
||
20 | |||
21 | protected function setUp(): void |
||
22 | { |
||
23 | $this->object = new Client('some-key'); |
||
24 | } |
||
25 | |||
26 | public function testAddressModelProperty(): void |
||
27 | { |
||
28 | $addressModel = $this->object->address; |
||
29 | $this->assertInstanceOf(Address::class, $addressModel); |
||
30 | } |
||
31 | |||
32 | public function testNotSupportedProperty(): void |
||
38 | } |
||
39 | } |
||
40 |