コード例 #1
0
ファイル: TagTest.php プロジェクト: CryptArc/TextFormatter
 /**
  * @testdox isIgnoreTag() returns false by default
  */
 public function testIsIgnoreTagFalse()
 {
     $tag = new Tag(Tag::SELF_CLOSING_TAG, 'I', 12, 0);
     $this->assertFalse($tag->isIgnoreTag());
 }