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