Files
roundcubemail/plugins/enigma/tests/EnigmaSubkey.php
Michael Voříšek 54f4aa33f9 Fix CS - imports (#9316)
* fix Tests\Browser\TestCase imports

* fix remaining imports

* fix PHPUnit\Framework\TestCase imports

* import GuzzleHttp\Client

* fix remaining

* "php_unit_method_casing" is not todo

* fix "single_line_comment_spacing"

* fix 2nd commit done using older fixer
2024-01-21 19:13:31 +01:00

22 lines
400 B
PHP

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