public function testSetBody() { // new assistantHistory entity $contact = new Contact(); // Use the setBody method $contact->setBody("This is a long dummy text that is suppose to be somewhat long and somewhat short"); // Assert the result $this->assertEquals("This is a long dummy text that is suppose to be somewhat long and somewhat short", $contact->getBody()); }