コード例 #1
0
ファイル: CompilerTests.php プロジェクト: robinduckett/Dwoo
 public function testNestedCommentHandlingGetSet()
 {
     $cmp = new Dwoo_Compiler();
     $this->assertEquals(false, $cmp->getNestedCommentsHandling());
     $cmp->setNestedCommentsHandling(true);
     $this->assertEquals(true, $cmp->getNestedCommentsHandling());
 }