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

21 lines
464 B
PHP

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