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

21 lines
458 B
PHP

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