PostgreSQLActiveRecordTest.php 257 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php

namespace yiiunit\framework\db\pgsql;

use yiiunit\framework\db\ActiveRecordTest;

class PostgreSQLActiveRecordTest extends ActiveRecordTest
{
    protected function setUp()
    {
        $this->driverName = 'pgsql';
        parent::setUp();
    }
}