phpOMS/tests/AutoloadExceptionTest.php
2019-07-08 19:51:19 +02:00

29 lines
521 B
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.2
*
* @package tests
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace phpOMS\tests;
use phpOMS\AutoloadException;
/**
* @internal
*/
class AutoloadExceptionTest extends \PHPUnit\Framework\TestCase
{
public function testException() : void
{
self::assertInstanceOf(\RuntimeException::class, new AutoloadException(''));
}
}