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