public function testSetGetBody()
 {
     $body = file_get_contents(__DIR__ . '/../TestAssets/body.phtml');
     $this->model->setBody($body);
     $this->assertStringEqualsFile(__DIR__ . '/../TestAssets/body.phtml', $this->model->getBody());
 }