mirror of
https://github.com/justinrainbow/json-schema.git
synced 2025-05-01 20:09:46 +02:00
17 lines
448 B
PHP
17 lines
448 B
PHP
<?php
|
|
|
|
namespace JsonSchema\Tests\Exception;
|
|
|
|
use JsonSchema\Exception\InvalidArgumentException;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class InvalidArgumentExceptionTest extends TestCase
|
|
{
|
|
public function testHierarchy()
|
|
{
|
|
$exception = new InvalidArgumentException();
|
|
self::assertInstanceOf('\InvalidArgumentException', $exception);
|
|
self::assertInstanceOf('\JsonSchema\Exception\ExceptionInterface', $exception);
|
|
}
|
|
}
|