summaryrefslogtreecommitdiff
path: root/plugins/newmail_notifier/tests/NewmailNotifier.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/newmail_notifier/tests/NewmailNotifier.php')
-rw-r--r--plugins/newmail_notifier/tests/NewmailNotifier.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/newmail_notifier/tests/NewmailNotifier.php b/plugins/newmail_notifier/tests/NewmailNotifier.php
new file mode 100644
index 000000000..ccddccd39
--- /dev/null
+++ b/plugins/newmail_notifier/tests/NewmailNotifier.php
@@ -0,0 +1,23 @@
+<?php
+
+class NewmailNotifier_Plugin extends PHPUnit_Framework_TestCase
+{
+
+ function setUp()
+ {
+ include_once __DIR__ . '/../newmail_notifier.php';
+ }
+
+ /**
+ * Plugin object construction test
+ */
+ function test_constructor()
+ {
+ $rcube = rcube::get_instance();
+ $plugin = new newmail_notifier($rcube->api);
+
+ $this->assertInstanceOf('newmail_notifier', $plugin);
+ $this->assertInstanceOf('rcube_plugin', $plugin);
+ }
+}
+