mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-09 17:46:51 +01:00
* use fixed "roundcube/plugin-installer" * Use composer autoloader for plugins testing * cherrypick remaining from 9241 related with testing * minor legacy autoload improvements
17 lines
275 B
PHP
17 lines
275 B
PHP
<?php
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class Enigma_EnigmaUserid extends TestCase
|
|
{
|
|
/**
|
|
* Test constructor
|
|
*/
|
|
public function test_constructor()
|
|
{
|
|
$error = new enigma_userid();
|
|
|
|
$this->assertInstanceOf('enigma_userid', $error);
|
|
}
|
|
}
|