Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function testQuoteStringLiteral(string $string) : void |
||
15 | { |
||
16 | $platform = $this->connection->getDatabasePlatform(); |
||
17 | $query = $platform->getDummySelectSQL( |
||
18 | $platform->quoteStringLiteral($string) |
||
19 | ); |
||
20 | |||
21 | self::assertSame($string, $this->connection->fetchColumn($query)); |
||
22 | } |
||
35 |