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