/**
   * Tests the accuracy of the getter getId().
   *
   * <p>Using validated setter to test.
   */
  public void testGetter_GetId() {

    screeningResponse.setId(defaultID);

    assertEquals("The id should be got correctly.", defaultID, screeningResponse.getId());
  }