mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-16 22:39:52 +08:00
13 lines
214 B
PHP
13 lines
214 B
PHP
<?php
|
|
|
|
namespace yiiunit\framework\db\mssql;
|
|
|
|
class MssqlQueryTest extends \yiiunit\framework\db\QueryTest
|
|
{
|
|
public function setUp()
|
|
{
|
|
$this->driverName = 'sqlsrv';
|
|
parent::setUp();
|
|
}
|
|
}
|