phpOMS/tests/System/File/PermissionExceptionTest.php

36 lines
758 B
PHP
Executable File

<?php
/**
* Karaka
*
* PHP Version 8.1
*
* @package tests
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\tests\System\File;
use phpOMS\System\File\PermissionException;
/**
* @internal
*/
final class PermissionExceptionTest extends \PHPUnit\Framework\TestCase
{
/**
* @covers phpOMS\System\File\PermissionException
* @group framework
*/
public function testConstructor() : void
{
$e = new PermissionException('test.file');
self::assertStringContainsString('test.file', $e->getMessage());
self::assertEquals(0, $e->getCode());
$this->isInstanceOf('\RuntimeException');
}
}