summaryrefslogtreecommitdiff
path: root/plugins/http_authentication/tests/HttpAuthentication.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/http_authentication/tests/HttpAuthentication.php')
-rw-r--r--plugins/http_authentication/tests/HttpAuthentication.php23
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..5de968d87
--- /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 __DIR__ . '/../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);
+ }
+}
+