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

21 lines
426 B
PHP

<?php
namespace Roundcube\Plugins\Tests;
use PHPUnit\Framework\TestCase;
class JqueryuiTest extends TestCase
{
/**
* Plugin object construction test
*/
public function test_constructor()
{
$rcube = \rcube::get_instance();
$plugin = new \jqueryui($rcube->plugins);
$this->assertInstanceOf('jqueryui', $plugin);
$this->assertInstanceOf('rcube_plugin', $plugin);
}
}