MssqlActiveRecordTest.php 232 Bytes
Newer Older
resurtm committed
1 2 3 4
<?php

namespace yiiunit\framework\db\mssql;

Alexander Makarov committed
5 6 7
use yiiunit\framework\db\ActiveRecordTest;

class MssqlActiveRecordTest extends ActiveRecordTest
resurtm committed
8
{
Alexander Makarov committed
9 10 11 12 13
	protected function setUp()
	{
		$this->driverName = 'sqlsrv';
		parent::setUp();
	}
resurtm committed
14
}