summaryrefslogtreecommitdiff
path: root/tests/Framework/ResultIndex.php
blob: efbba6da7cf09a6ff0ba3c13944b82d399a367fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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");
    }
}