| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function properlyCreatesExceptionFromNotFoundShortCode( |
||
| 17 | string $expectedMessage, |
||
| 18 | string $shortCode, |
||
| 19 | ?string $domain |
||
| 20 | ): void { |
||
| 21 | $e = ShortUrlNotFoundException::fromNotFoundShortCode($shortCode, $domain); |
||
| 22 | $this->assertEquals($expectedMessage, $e->getMessage()); |
||
| 23 | } |
||
| 39 |