mirror of
https://github.com/Karaka-Management/oms-Comments.git
synced 2026-01-11 16:18:41 +00:00
27 lines
480 B
PHP
Executable File
27 lines
480 B
PHP
Executable File
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package tests
|
|
* @copyright 2013 Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Comments\tests\Admin;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class AdminTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
protected const MODULE_NAME = 'Comments';
|
|
protected const URI_LOAD = '';
|
|
|
|
use \Modules\tests\ModuleTestTrait;
|
|
}
|