Failed Conditions
Pull Request — master (#3)
by Sergey
02:12
created

ClientTest::testNotSupportedProperty()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SergeyNezbritskiy\NovaPoshta\Tests\Unit;
6
7
use Exception;
8
use PHPUnit\Framework\TestCase;
9
use SergeyNezbritskiy\NovaPoshta\Client;
10
use SergeyNezbritskiy\NovaPoshta\Models\Address;
11
12
/**
13
 * Class ClientTest
14
 * Unit test for \SergeyNezbritskiy\NovaPoshta\Client
15
 * @see Client
16
 */
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
33
    {
34
        $property = 'someNotSupportedModel';
35
        $this->expectExceptionMessage('Model `someNotSupportedModel` not supported by Nova Poshta API Client');
36
        $this->expectException(Exception::class);
37
        $this->object->$property;
38
    }
39
}
40