diff options
Diffstat (limited to 'tests/Framework/Rcube.php')
-rw-r--r-- | tests/Framework/Rcube.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/Framework/Rcube.php b/tests/Framework/Rcube.php new file mode 100644 index 000000000..637558dc9 --- /dev/null +++ b/tests/Framework/Rcube.php @@ -0,0 +1,20 @@ +<?php + +/** + * Test class to test rcube class + * + * @package Tests + */ +class Framework_Rcube extends PHPUnit_Framework_TestCase +{ + + /** + * Class constructor + */ + function test_class() + { + $object = rcube::get_instance(); + + $this->assertInstanceOf('rcube', $object, "Class singleton"); + } +} |