more tests and make classes final

This commit is contained in:
Dennis Eichhorn 2021-10-21 22:16:07 +02:00
parent 3cd9da67c9
commit acd266272d
2 changed files with 27 additions and 6 deletions

View File

@ -1,6 +0,0 @@
[Dolphin]
Timestamp=2021,5,23,18,50,22
Version=4
[Settings]
HiddenFilesShown=true

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

@ -0,0 +1,27 @@
<?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;
}