mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-02-25 03:51:19 +01:00
19 lines
318 B
PHP
19 lines
318 B
PHP
<?php
|
|
|
|
namespace Roundcube\Plugins\Tests;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class EnigmaSignatureTest extends TestCase
|
|
{
|
|
/**
|
|
* Test constructor
|
|
*/
|
|
public function test_constructor()
|
|
{
|
|
$error = new \enigma_signature();
|
|
|
|
$this->assertInstanceOf('enigma_signature', $error);
|
|
}
|
|
}
|