Exemplo n.º 1
0
 public function testEscapeExists()
 {
     $quoter = new \r8\Quoter();
     $quoter->setEscape('\\');
     $this->assertTrue($quoter->escapeExists());
     $quoter->clearEscape();
     $this->assertFalse($quoter->escapeExists());
 }