summaryrefslogtreecommitdiff
path: root/tests/Framework/ImapCache.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Framework/ImapCache.php')
-rw-r--r--tests/Framework/ImapCache.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/Framework/ImapCache.php b/tests/Framework/ImapCache.php
new file mode 100644
index 000000000..83612c549
--- /dev/null
+++ b/tests/Framework/ImapCache.php
@@ -0,0 +1,20 @@
+<?php
+
+/**
+ * Test class to test rcube_imap_cache class
+ *
+ * @package Tests
+ */
+class Framework_ImapCache extends PHPUnit_Framework_TestCase
+{
+
+ /**
+ * Class constructor
+ */
+ function test_class()
+ {
+ $object = new rcube_imap_cache(null, null, null, null);
+
+ $this->assertInstanceOf('rcube_imap_cache', $object, "Class constructor");
+ }
+}