コード例 #1
0
ファイル: Quoter.php プロジェクト: Nycto/Round-Eights
 public function testEscapeExists()
 {
     $quoter = new \r8\Quoter();
     $quoter->setEscape('\\');
     $this->assertTrue($quoter->escapeExists());
     $quoter->clearEscape();
     $this->assertFalse($quoter->escapeExists());
 }