mirror of
https://github.com/Karaka-Management/oms-Accounting.git
synced 2026-01-11 21:38:40 +00:00
28 lines
495 B
PHP
Executable File
28 lines
495 B
PHP
Executable File
<?php
|
|
/**
|
|
* Karaka
|
|
*
|
|
* PHP Version 8.0
|
|
*
|
|
* @package tests
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://karaka.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Accounting\tests\Admin;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class AccountingTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
protected const NAME = 'Accounting';
|
|
|
|
protected const URI_LOAD = 'http://127.0.0.1/en/backend/accounting';
|
|
|
|
use \Modules\tests\ModuleTestTrait;
|
|
}
|