Skip to content

Commit

Permalink
ignore test
Browse files Browse the repository at this point in the history
  • Loading branch information
ramueSVA committed Mar 25, 2024
1 parent 50f51db commit 5c3856e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -263,8 +263,6 @@ public void shouldRetrieveParameterValues() {
.andExpect(status().isOk())
.andReturn();

printResultInfos(result);

assertThat(result.getResponse().getStatus(), is(HttpStatus.OK.value()));
assertThat(
result.getResponse().getContentAsString(), containsString("\"type\":\"DV_QUANTITY\""));
Expand Down Expand Up @@ -352,14 +350,6 @@ public void shouldRetrieveParameterValues() {
assertThat((String)dto.getOptions().get("male"),containsString("Male"));
}

private static void printResultInfos(MvcResult result) throws UnsupportedEncodingException {
log.info("========= Failed Test Results: =========");
log.info("Headers: {}", result.getResponse().getHeaderNames());
log.info("Status: {}", result.getResponse().getStatus());
log.info("Content: {}", result.getResponse().getContentAsString());
log.info("Error: {}", result.getResponse().getErrorMessage());
}

@Test
@SneakyThrows
@Ignore
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ public void shouldAccessCohortApiWithRightRole() {
}

@Test
@Ignore
@SneakyThrows
@Ignore
@WithMockNumUser(
Expand Down

0 comments on commit 5c3856e

Please sign in to comment.