commit | author | age | ||
ecef4c | 1 | <?php |
AM | 2 | |
3 | /** | |
4 | * Test class to test rcube_db_sqlite class | |
5 | * | |
6 | * @package Tests | |
0bfc86 | 7 | * @group database |
TB | 8 | * @group sqlite |
ecef4c | 9 | */ |
AM | 10 | class Framework_DBSqlite extends PHPUnit_Framework_TestCase |
11 | { | |
12 | ||
13 | /** | |
14 | * Class constructor | |
15 | */ | |
16 | function test_class() | |
17 | { | |
18 | $object = new rcube_db_sqlite('test'); | |
19 | ||
20 | $this->assertInstanceOf('rcube_db_sqlite', $object, "Class constructor"); | |
21 | } | |
22 | } |