diff options
Diffstat (limited to 'plugins/http_authentication/tests/HttpAuthentication.php')
-rw-r--r-- | plugins/http_authentication/tests/HttpAuthentication.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/http_authentication/tests/HttpAuthentication.php b/plugins/http_authentication/tests/HttpAuthentication.php new file mode 100644 index 000000000..c17236821 --- /dev/null +++ b/plugins/http_authentication/tests/HttpAuthentication.php @@ -0,0 +1,23 @@ +<?php + +class HttpAuthentication_Plugin extends PHPUnit_Framework_TestCase +{ + + function setUp() + { + include_once dirname(__FILE__) . '/../http_authentication.php'; + } + + /** + * Plugin object construction test + */ + function test_constructor() + { + $rcube = rcube::get_instance(); + $plugin = new http_authentication($rcube->api); + + $this->assertInstanceOf('http_authentication', $plugin); + $this->assertInstanceOf('rcube_plugin', $plugin); + } +} + |