diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-27 09:28:16 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-27 09:28:16 +0200 |
commit | 5f8adabb6286fdcb0ff8a0ea5d1d58f40eef51f4 (patch) | |
tree | 8e6997e584950115850bf698943f1828fb9b9811 /tests/Framework/Imap.php | |
parent | 9b05f19338e209f05386e5b13fe0a704c94062bb (diff) |
Add simple (constructor) tests for Framework classes
Diffstat (limited to 'tests/Framework/Imap.php')
-rw-r--r-- | tests/Framework/Imap.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/Framework/Imap.php b/tests/Framework/Imap.php new file mode 100644 index 000000000..3f52e07be --- /dev/null +++ b/tests/Framework/Imap.php @@ -0,0 +1,20 @@ +<?php + +/** + * Test class to test rcube_imap class + * + * @package Tests + */ +class Framework_Imap extends PHPUnit_Framework_TestCase +{ + + /** + * Class constructor + */ + function test_class() + { + $object = new rcube_imap; + + $this->assertInstanceOf('rcube_imap', $object, "Class constructor"); + } +} |