@Test
 public void testSetDescription() {
   request.setDescription("The other project description");
   assertEquals("The other project description", request.getDescription());
 }
 @Test
 public void testGetDisplayName() {
   assertEquals("the display name", request.getDisplayName());
 }
 @Test
 public void testGetDescription() {
   assertEquals("The project description", request.getDescription());
 }
 @Test
 public void setDisplayName() {
   request.setDisplayName("the other display name");
   assertEquals("the other display name", request.getDisplayName());
 }