Aleksander Machniak
2016-05-22 0344b168276f80189e2254c75a762aff5b517b6b
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 }