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

    screeningResponse.setResponseText(defaultText);

    assertEquals(
        "The responseText should be got correctly.",
        defaultText,
        screeningResponse.getResponseText());
  }