/**
  * @test
  * @author Bastian Waidelich <*****@*****.**>
  */
 public function renderReturnsOpeningAndClosingTagIfNoContentIsSpecifiedButForceClosingTagIsTrue()
 {
     $tagBuilder = new Tx_Fluid_Core_ViewHelper_TagBuilder('tag');
     $tagBuilder->forceClosingTag(TRUE);
     $this->assertEquals('<tag></tag>', $tagBuilder->render());
 }