mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 06:44:03 +01:00
21 lines
372 B
PHP
21 lines
372 B
PHP
<?php
|
|
|
|
class Enigma_EnigmaUserid extends PHPUnit\Framework\TestCase
|
|
{
|
|
static function setUpBeforeClass(): void
|
|
{
|
|
include_once __DIR__ . '/../lib/enigma_userid.php';
|
|
}
|
|
|
|
/**
|
|
* Test constructor
|
|
*/
|
|
function test_constructor()
|
|
{
|
|
$error = new enigma_userid();
|
|
|
|
$this->assertInstanceOf('enigma_userid', $error);
|
|
}
|
|
}
|
|
|