| 1 | <?php |
||
| 9 | class InvalidArgumentExceptionTest extends TestCase |
||
| 10 | { |
||
| 11 | public function testImplementsInterface() |
||
| 12 | { |
||
| 13 | $exception = new InvalidArgumentException(); |
||
| 14 | |||
| 15 | $this->assertInstanceOf(ExceptionInterface::class, $exception); |
||
| 16 | $this->assertInstanceOf(\InvalidArgumentException::class, $exception); |
||
| 17 | } |
||
| 18 | } |
||
| 19 |