Exemplo n.º 1
0
 /**
  * @test
  */
 public function hasContentReturnsFalseIfContentIsAnEmptyString()
 {
     $tagBuilder = new \TYPO3\CMS\Fluid\Core\ViewHelper\TagBuilder();
     $tagBuilder->setContent('');
     $this->assertFalse($tagBuilder->hasContent());
 }