Files
roundcubemail/tests/Framework/DBMysql.php
Michael Voříšek 54f4aa33f9 Fix CS - imports (#9316)
* 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
2024-01-21 19:13:31 +01:00

23 lines
388 B
PHP

<?php
use PHPUnit\Framework\TestCase;
/**
* Test class to test rcube_db_mysql class
*
* @group database
* @group mysql
*/
class Framework_DBMysql extends TestCase
{
/**
* Class constructor
*/
public function test_class()
{
$object = new rcube_db_mysql('test');
$this->assertInstanceOf('rcube_db_mysql', $object, 'Class constructor');
}
}