oms-Tasks/tests/Admin/AdminTest.php
2020-03-14 14:27:06 +01:00

27 lines
496 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 Modules\Tasks\tests\Admin;
/**
* @internal
*/
class AdminTest extends \PHPUnit\Framework\TestCase
{
protected const MODULE_NAME = 'Tasks';
protected const URI_LOAD = 'http://127.0.0.1/en/backend/task';
use \Modules\tests\ModuleTestTrait;
}