public function testPhone()
 {
     $phone = 911;
     $this->assertNull($this->unit->getPhone());
     $this->unit->setPhone($phone);
     $this->assertEquals($phone, $this->unit->getPhone());
 }