mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-07 08:36:51 +01:00
* 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
22 lines
400 B
PHP
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);
|
|
}
|
|
}
|