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