public void should_ReturnAllStubbedRequestsAsYAML_WhenSuccessfulGetMade_ToAdminPortalRoot() throws Exception {
final String requestUrl = String.format("%s%s", ADMIN_URL, "/");
final HttpRequest httpGetRequest = HttpUtils.constructHttpRequest(HttpMethods.GET, requestUrl);
final HttpResponse httpResponse = httpGetRequest.execute();
final String responseContentAsString = httpResponse.parseAsString().trim();
assertThat(httpResponse.getStatusCode()).isEqualTo(HttpStatus.OK_200);
assertThat(responseContentAsString).contains("request");
assertThat(responseContentAsString).contains("url: ^/resources/asn/");
assertThat(responseContentAsString).contains("content-disposition: attachment; filename=hello-world.pdf");
assertThat(responseContentAsString).contains("file: ../json/response.json");
assertThat(responseContentAsString).contains("url: /uri/with/single/sequenced/response");