public function testWebsite()
 {
     $site = 'http://test.com';
     $this->assertNull($this->unit->getWebsite());
     $this->unit->setWebsite($site);
     $this->assertEquals($site, $this->unit->getWebsite());
 }