mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-16 07:11:19 +08:00

- changed test class naming for easier copying and searching of classes - made base tests abstract and made MySQL an equal citisen in the test hierarchie - added missing db specific test classes
18 lines
354 B
PHP
18 lines
354 B
PHP
<?php
|
|
|
|
namespace yiiunit\framework\db\mssql;
|
|
|
|
/**
|
|
* @group db
|
|
* @group mssql
|
|
*/
|
|
class ActiveRecordTest extends \yiiunit\framework\db\ActiveRecordTest
|
|
{
|
|
public $driverName = 'sqlsrv';
|
|
|
|
public function testExplicitPkOnAutoIncrement()
|
|
{
|
|
$this->markTestSkipped('MSSQL does not support explicit value for an IDENTITY column.');
|
|
}
|
|
}
|