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

31 lines
579 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\DataStorage;
require_once __DIR__ . '/../Autoloader.php';
use phpOMS\DataStorage\LockException;
/**
* @internal
*/
class LockExceptionTest extends \PHPUnit\Framework\TestCase
{
public function testException() : void
{
self::assertInstanceOf(\RuntimeException::class, new LockException(''));
}
}