Passed
Pull Request — master (#17)
by Sergey
02:31
created

ClientTest::testNotSupportedProperty()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 4
c 1
b 0
f 1
dl 0
loc 7
rs 10
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;
0 ignored issues
show
Bug introduced by
The type SergeyNezbritskiy\NovaPoshta\Models\Address was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
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
    /**
27
     * @throws Exception
28
     */
29
    public function testAddressModelProperty(): void
30
    {
31
        $addressModel = $this->object->address;
32
        $this->assertInstanceOf(Address::class, $addressModel);
33
    }
34
}
35