Aleksander Machniak
2014-10-13 0ea079d604ef1f34cc47646ab23176a3c66f16ee
commit | author | age
5f8ada 1 <?php
AM 2
3 /**
4  * Test class to test rcube class
5  *
6  * @package Tests
7  */
8 class Framework_Rcube extends PHPUnit_Framework_TestCase
9 {
10
11     /**
12      * Class constructor
13      */
14     function test_class()
15     {
16         $object = rcube::get_instance();
17
18         $this->assertInstanceOf('rcube', $object, "Class singleton");
19     }
20 }