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

24 lines
472 B
PHP

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