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