Files
yii2/tests/unit/framework/db/pgsql/PostgreSQLConnectionTest.php
2013-05-29 00:01:02 +02:00

19 lines
356 B
PHP

<?php
namespace yiiunit\framework\db\pgsql;
use yiiunit\framework\db\ConnectionTest;
class PostgreSQLConnectionTest extends ConnectionTest
{
public function setUp()
{
$this->driverName = 'pgsql';
parent::setUp();
}
public function testConnection() {
$connection = $this->getConnection(true);
}
}