phpOMS/tests/AutoloadExceptionTest.php

25 lines
473 B
PHP

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