Files
roundcubemail/tests/Framework/Html.php
2012-08-27 09:28:16 +02:00

21 lines
315 B
PHP

<?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");
}
}