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

24 lines
500 B
PHP

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