mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-17 16:01:15 +08:00

- Better names - Removed not used MySQLTestCase - Moved base testcase for DB to db namespace - Minor style fixes
15 lines
229 B
PHP
15 lines
229 B
PHP
<?php
|
|
|
|
namespace yiiunit\framework\db\mssql;
|
|
|
|
use yiiunit\framework\db\QueryTest;
|
|
|
|
class MssqlQueryTest extends QueryTest
|
|
{
|
|
public function setUp()
|
|
{
|
|
$this->driverName = 'sqlsrv';
|
|
parent::setUp();
|
|
}
|
|
}
|