You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
roundcubemail/tests/Framework/ResultIndex.php

21 lines
358 B
PHP

<?php
/**
* Test class to test rcube_result_index class
*
* @package Tests
*/
class Framework_ResultIndex extends PHPUnit_Framework_TestCase
{
/**
* Class constructor
*/
function test_class()
{
$object = new rcube_result_index;
$this->assertInstanceOf('rcube_result_index', $object, "Class constructor");
}
}