mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-05 15:54:03 +01:00
* fix Tests\Browser\TestCase imports * fix remaining imports * fix PHPUnit\Framework\TestCase imports * import GuzzleHttp\Client * fix remaining * "php_unit_method_casing" is not todo * fix "single_line_comment_spacing" * fix 2nd commit done using older fixer
23 lines
393 B
PHP
23 lines
393 B
PHP
<?php
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Test class to test rcube_db_sqlite class
|
|
*
|
|
* @group database
|
|
* @group sqlite
|
|
*/
|
|
class Framework_DBSqlite extends TestCase
|
|
{
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
public function test_class()
|
|
{
|
|
$object = new rcube_db_sqlite('test');
|
|
|
|
$this->assertInstanceOf('rcube_db_sqlite', $object, 'Class constructor');
|
|
}
|
|
}
|