Files
roundcubemail/plugins/jqueryui/tests/Jqueryui.php
Aleksander Machniak cc1a1d95fe Correct property name
2019-10-16 12:40:41 +02:00

24 lines
457 B
PHP

<?php
class Jqueryui_Plugin extends PHPUnit_Framework_TestCase
{
function setUp()
{
include_once __DIR__ . '/../jqueryui.php';
}
/**
* Plugin object construction test
*/
function test_constructor()
{
$rcube = rcube::get_instance();
$plugin = new jqueryui($rcube->plugins);
$this->assertInstanceOf('jqueryui', $plugin);
$this->assertInstanceOf('rcube_plugin', $plugin);
}
}