You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
roundcubemail/tests/Framework/DBMysql.php

23 lines
385 B
PHP

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