public function testSetSubject()
 {
     // new assistantHistory entity
     $contact = new Contact();
     // Use the setSubject method
     $contact->setSubject("asdf");
     // Assert the result
     $this->assertEquals("asdf", $contact->getSubject());
 }