mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
38 lines
798 B
PHP
38 lines
798 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package tests
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\tests\Account;
|
|
|
|
require_once __DIR__ . '/../Autoloader.php';
|
|
|
|
use phpOMS\Account\AccountStatus;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class AccountStatusTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @coversNothing
|
|
*/
|
|
public function testEnums() : void
|
|
{
|
|
self::assertCount(4, AccountStatus::getConstants());
|
|
self::assertEquals(1, AccountStatus::ACTIVE);
|
|
self::assertEquals(2, AccountStatus::INACTIVE);
|
|
self::assertEquals(3, AccountStatus::TIMEOUT);
|
|
self::assertEquals(4, AccountStatus::BANNED);
|
|
}
|
|
}
|