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/DBSqlsrv.php

23 lines
390 B
PHP

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