PostgreSqlPlatformTest.php 394 Bytes
Newer Older
1 2 3 4 5 6
<?php

namespace Doctrine\Tests\DBAL\Platforms;

use Doctrine\DBAL\Platforms\PostgreSqlPlatform;

7
class PostgreSqlPlatformTest extends AbstractPostgreSqlPlatformTestCase
8
{
9
    public function createPlatform()
10
    {
11
        return new PostgreSqlPlatform;
12
    }
13 14 15

    public function testSupportsPartialIndexes()
    {
16
        self::assertTrue($this->_platform->supportsPartialIndexes());
17
    }
18
}