Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class SearchSettlementStreetsTest extends TestCase implements ConstantsInterface |
||
14 | { |
||
15 | use UsesConnectionTrait; |
||
16 | |||
17 | private Address $model; |
||
18 | |||
19 | protected function setUp(): void |
||
20 | { |
||
21 | $connection = $this->getConnection(); |
||
22 | $this->model = new Address($connection); |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @return void |
||
27 | * @throws NovaPoshtaApiException |
||
28 | */ |
||
29 | public function testSearchSettlementStreets(): void |
||
34 | } |
||
35 | } |
||
36 |