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