@Test public void testGetDisplayName() { assertEquals("the display name", request.getDisplayName()); }
@Test public void setDisplayName() { request.setDisplayName("the other display name"); assertEquals("the other display name", request.getDisplayName()); }