Files
roundcubemail/tests/Framework/DBSqliteTest.php
2024-06-05 07:46:51 +02:00

25 lines
432 B
PHP

<?php
namespace Roundcube\Tests\Framework;
use PHPUnit\Framework\TestCase;
/**
* Test class to test rcube_db_sqlite class
*
* @group database
* @group sqlite
*/
class DBSqliteTest extends TestCase
{
/**
* Class constructor
*/
public function test_class()
{
$object = new \rcube_db_sqlite('test');
$this->assertInstanceOf(\rcube_db_sqlite::class, $object, 'Class constructor');
}
}