mirror of
https://github.com/justinrainbow/json-schema.git
synced 2025-05-02 12:28:31 +02:00
17 lines
532 B
PHP
17 lines
532 B
PHP
<?php
|
|
|
|
namespace JsonSchema\Tests\Exception;
|
|
|
|
use JsonSchema\Exception\InvalidSourceUriException;
|
|
|
|
class InvalidSourceUriExceptionTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testHierarchy()
|
|
{
|
|
$exception = new InvalidSourceUriException();
|
|
self::assertInstanceOf('\InvalidArgumentException', $exception);
|
|
self::assertInstanceOf('\JsonSchema\Exception\InvalidArgumentException', $exception);
|
|
self::assertInstanceOf('\JsonSchema\Exception\ExceptionInterface', $exception);
|
|
}
|
|
}
|