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