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