mirror of
https://github.com/Karaka-Management/oms-Shop.git
synced 2026-01-11 18:48:41 +00:00
28 lines
488 B
PHP
28 lines
488 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 8.0
|
|
*
|
|
* @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\Shop\tests\Admin;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class AdminTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
protected const NAME = 'Shop';
|
|
|
|
protected const URI_LOAD = 'http://127.0.0.1/en/backend/shop';
|
|
|
|
use \Modules\tests\ModuleTestTrait;
|
|
}
|