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:37:16 +0100 |
commit | 6fdf1f20729c34083b958b706647f42df37e8bca (patch) | |
tree | 212b83f47a8f65fb29402f5907959b04cd687c76 /tests/Framework/ImapCache.php | |
parent | 4bcb8ac002c95e6290b9307ab41bb8539cde8fe5 (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"); + } +} |