mirror of
https://github.com/Karaka-Management/oms-QA.git
synced 2026-01-11 15:48:42 +00:00
27 lines
488 B
PHP
Executable File
27 lines
488 B
PHP
Executable File
<?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\QA\tests\Admin;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class AdminTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
protected const MODULE_NAME = 'QA';
|
|
protected const URI_LOAD = 'http://127.0.0.1/en/backend/qa';
|
|
|
|
use \Modules\tests\ModuleTestTrait;
|
|
}
|