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