mirror of
https://github.com/Karaka-Management/oms-Admin.git
synced 2026-01-11 21:38:40 +00:00
37 lines
727 B
PHP
37 lines
727 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\Admin\tests\Models;
|
|
|
|
use Modules\Admin\Models\App;
|
|
|
|
/**
|
|
* @testdox Modules\Admin\tests\Models\AppTest: App model
|
|
*
|
|
* @internal
|
|
*/
|
|
class AppTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @testdox The account has the expected default values after initialization
|
|
* @covers Modules\Admin\Models\App
|
|
* @group module
|
|
*/
|
|
public function testDefault() : void
|
|
{
|
|
$account = new App();
|
|
self::assertEquals(0, $account->getId());
|
|
}
|
|
}
|