Files
roundcubemail/plugins/database_attachments/tests/DatabaseAttachments.php
2013-01-19 12:16:16 +01:00

24 lines
510 B
PHP

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