Files
roundcubemail/plugins/filesystem_attachments/tests/FilesystemAttachments.php
Aleksander Machniak 89e54718ca Migration to PHPUnit v9
2021-07-25 11:07:56 +02:00

23 lines
542 B
PHP

<?php
class FilesystemAttachments_Plugin extends PHPUnit\Framework\TestCase
{
public static function setUpBeforeClass(): void
{
include_once __DIR__ . '/../filesystem_attachments.php';
}
/**
* Plugin object construction test
*/
function test_constructor()
{
$rcube = rcube::get_instance();
$plugin = new filesystem_attachments($rcube->plugins);
$this->assertInstanceOf('filesystem_attachments', $plugin);
$this->assertInstanceOf('rcube_plugin', $plugin);
}
}