| Total Complexity | 1 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 16 | class RouteNotFoundExceptionTest extends TestCase |
||
| 17 | { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @return void |
||
| 21 | */ |
||
| 22 | public function testConstructor() : void |
||
| 23 | { |
||
| 24 | $exception = new RouteNotFoundException(); |
||
| 25 | |||
| 26 | $this->assertInstanceOf(RuntimeException::class, $exception); |
||
| 27 | $this->assertInstanceOf(ExceptionInterface::class, $exception); |
||
| 28 | } |
||
| 30 |