diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-02-09 17:37:16 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-02-09 17:39:27 +0100 |
commit | d3abad28764286cb8a58e5c74173d3fd671c5ac0 (patch) | |
tree | 691a03476c6787ec80a7c2582f5f196664a9da24 /tests/Framework/ImapCache.php | |
parent | 517c9f9a8dba8e83eaa37a7660f434102e967a77 (diff) |
Add more tests for framework classes
Diffstat (limited to 'tests/Framework/ImapCache.php')
-rw-r--r-- | tests/Framework/ImapCache.php | 20 |
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"); + } +} |