phpOMS/tests/DataStorage/Cache/Exception/InvalidConnectionConfigExceptionTest.php
Dennis Eichhorn a1b591d141 fix tests
2024-03-20 03:00:25 +00:00

33 lines
732 B
PHP
Executable File

<?php
/**
* Jingga
*
* 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\DataStorage\Cache\Exception;
use phpOMS\DataStorage\Cache\Exception\InvalidConnectionConfigException;
/**
* @internal
*/
final class InvalidConnectionConfigExceptionTest extends \PHPUnit\Framework\TestCase
{
/**
* @covers \phpOMS\DataStorage\Cache\Exception\InvalidConnectionConfigException
* @group framework
*/
public function testException() : void
{
self::assertInstanceOf(\InvalidArgumentException::class, new InvalidConnectionConfigException(''));
}
}