void shouldReturn403WhenUserRoleIsEmpty()

in src/it/java/com/epam/digital/data/platform/usrtaskmgt/controller/UserTaskControllerIT.java [205:210]


  void shouldReturn403WhenUserRoleIsEmpty() throws Exception {
    var request = get("/api/task/testIdForTokenWithoutRole")
        .accept(MediaType.APPLICATION_JSON_VALUE);

    performWithTokenWithoutRole(request).andExpect(status().is4xxClientError());
  }