Files
roundcubemail/plugins/enigma/tests/EnigmaSubkey.php
Aleksander Machniak 89e54718ca Migration to PHPUnit v9
2021-07-25 11:07:56 +02:00

21 lines
372 B
PHP

<?php
class Enigma_EnigmaSubkey extends PHPUnit\Framework\TestCase
{
static function setUpBeforeClass(): void
{
include_once __DIR__ . '/../lib/enigma_subkey.php';
}
/**
* Test constructor
*/
function test_constructor()
{
$error = new enigma_subkey();
$this->assertInstanceOf('enigma_subkey', $error);
}
}