/**
  * test set body content
  */
 public function testSetBodyContent()
 {
     $expectedReturnValue = 'ABCDE';
     $this->fixture->setBodyContent('ABCDE');
     $out = $this->fixture->getBodyContent();
     $this->assertEquals($expectedReturnValue, $out);
     $out = $this->fixture->render();
     $this->assertContains($expectedReturnValue, $out);
 }