mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
31 lines
559 B
PHP
31 lines
559 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @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\Account;
|
|
|
|
require_once __DIR__ . '/../Autoloader.php';
|
|
|
|
use phpOMS\Account\NullAccount;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class NullAccountTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
public function testNull() : void
|
|
{
|
|
self::assertInstanceOf('\phpOMS\Account\Account', new NullAccount());
|
|
}
|
|
}
|