Files
roundcubemail/plugins/enigma/tests/EnigmaSignatureTest.php
2024-06-05 07:46:51 +02:00

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);
}
}