add setup test

This commit is contained in:
Dennis Eichhorn 2020-06-14 15:49:50 +02:00
parent 5411585157
commit b7a165d843

26
tests/Admin/AdminTest.php Normal file
View File

@ -0,0 +1,26 @@
<?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 Modules\Support\tests\Admin;
/**
* @internal
*/
class AdminTest extends \PHPUnit\Framework\TestCase
{
protected const MODULE_NAME = 'Support';
protected const URI_LOAD = '';
use \Modules\tests\ModuleTestTrait;
}