public function testSetRawContentAndGetRawContent()
 {
     $this->assertSame('', $this->rfc->getRawContent());
     $html = '<html><head><title>Testing :)</title></head><body></body></html>';
     $this->rfc->setRawContent($html);
     $this->assertSame($html, $this->rfc->getRawContent());
 }