DIR:/usr/local/cwpsrv/var/services/roundcube_27-07-2024.bak/plugins/emoticons/tests/ |
Current File : //usr/local/cwpsrv/var/services/roundcube_27-07-2024.bak/plugins/emoticons/tests/Emoticons.php |
<?php class Emoticons_Plugin extends PHPUnit_Framework_TestCase { function setUp() { include_once __DIR__ . '/../emoticons.php'; } /** * Plugin object construction test */ function test_constructor() { $rcube = rcube::get_instance(); $plugin = new emoticons($rcube->api); $this->assertInstanceOf('emoticons', $plugin); $this->assertInstanceOf('rcube_plugin', $plugin); } } |