PostgreSQLActiveRecordTest.php 236 Bytes
Newer Older
1 2 3 4 5 6 7 8
<?php

namespace yiiunit\framework\db\pgsql;

use yiiunit\framework\db\ActiveRecordTest;

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