/**
  * @test
  * @expectedException \TYPO3\CMS\Fluid\Core\ViewHelper\Exception
  */
 public function renderThrowsExceptionIfGivenSubjectIsNotCountable()
 {
     $object = new \stdClass();
     $this->viewHelper->render($object);
 }