Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class PostgresConnectionTest extends PHPUnit_Framework_TestCase |
||
8 | { |
||
9 | private $postgresConnection; |
||
10 | |||
11 | protected function setUp() |
||
12 | { |
||
13 | $pgConfig = ['driver' => 'pgsql', 'prefix' => 'prefix', 'database' => 'database', 'name' => 'foo']; |
||
14 | $this->postgresConnection = new PostgresConnection(new PDOStub(), 'database', 'prefix', $pgConfig); |
||
15 | } |
||
16 | |||
17 | public function testGetSchemaBuilder() |
||
22 | } |
||
23 | } |
||
24 |