public function testSetEmail()
 {
     // new assistantHistory entity
     $contact = new Contact();
     // Use the setEmail method
     $contact->setEmail("*****@*****.**");
     // Assert the result
     $this->assertEquals("*****@*****.**", $contact->getEmail());
 }