| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 31 | public function testCreateAddressTooLongNote(): void |
||
| 32 | { |
||
| 33 | $note = 'This is the note that exceeds forty symbols - the limit from Nova Poshta API'; |
||
| 34 | $this->expectException(RuntimeException::class); |
||
| 35 | $this->expectExceptionMessage('Note exceeds the limit of 40 symbols'); |
||
| 36 | $this->model->save('', [], $note); |
||
| 37 | } |
||
| 50 |