mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-20 02:16:41 +08:00
19 lines
356 B
PHP
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);
|
|
}
|
|
}
|