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