| Total Complexity | 4 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class PostgreSQL91PlatformTest extends PostgreSqlPlatformTest |
||
| 9 | { |
||
| 10 | public function createPlatform() |
||
| 11 | { |
||
| 12 | return new PostgreSQL91Platform(); |
||
| 13 | } |
||
| 14 | |||
| 15 | public function testSupportsColumnCollation() : void |
||
| 16 | { |
||
| 17 | self::assertTrue($this->_platform->supportsColumnCollation()); |
||
| 18 | } |
||
| 19 | |||
| 20 | public function testColumnCollationDeclarationSQL() : void |
||
| 21 | { |
||
| 22 | self::assertSame( |
||
| 23 | 'COLLATE "en_US.UTF-8"', |
||
| 24 | $this->_platform->getColumnCollationDeclarationSQL('en_US.UTF-8') |
||
| 25 | ); |
||
| 26 | } |
||
| 27 | |||
| 28 | public function testGetCreateTableSQLWithColumnCollation() : void |
||
| 38 | ); |
||
| 39 | } |
||
| 40 | } |
||
| 41 |