mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-02-20 09:31:18 +01:00
21 lines
458 B
PHP
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);
|
|
}
|
|
}
|