Example #1
0
 /**
  * @test
  */
 public function renderReturnsOpeningAndClosingTagIfNoContentIsSpecifiedButForceClosingTagIsTrue()
 {
     $tagBuilder = new TagBuilder('tag');
     $tagBuilder->forceClosingTag(true);
     $this->assertEquals('<tag></tag>', $tagBuilder->render());
 }