for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doctrine\Tests\DBAL\Platforms;
use Doctrine\DBAL\Platforms\PostgreSQL91Platform;
class PostgreSQL91PlatformTest extends PostgreSqlPlatformTest
{
public function createPlatform()
return new PostgreSQL91Platform();
}
public function testColumnCollationDeclarationSQL()
self::assertEquals(
'COLLATE "en_US.UTF-8"',
$this->_platform->getColumnCollationDeclarationSQL('en_US.UTF-8')
);