示例#1
0
 /**
  * @test
  */
 public function shouldEscapeString()
 {
     // Fixture
     // Test
     $actual = $this->target->escape('"; SELECT "Alice";');
     // Assert
     $this->assertSame("'\"; SELECT \"Alice\";'", $actual);
 }