Files
roundcubemail/tests/Actions/Utils/SpellHtmlTest.php
2024-06-05 07:46:51 +02:00

22 lines
403 B
PHP

<?php
namespace Roundcube\Tests\Actions\Utils;
use Roundcube\Tests\ActionTestCase;
/**
* Test class to test rcmail_action_utils_spell_html
*/
class SpellHtmlTest extends ActionTestCase
{
/**
* Class constructor
*/
public function test_class()
{
$object = new \rcmail_action_utils_spell_html();
$this->assertInstanceOf(\rcmail_action::class, $object);
}
}