void startBp_unauthorized()

in src/it/java/com/epam/digital/data/platform/bpwebservice/it/controller/StartBpControllerIT.java [83:91]


  void startBp_unauthorized() throws Exception {
    var request = fileContent("/startBp/happyPath/json/startBpRequest.json");

    mockMvc.perform(MockMvcRequestBuilders.post("/api/start-bp")
            .accept(MediaType.APPLICATION_JSON)
            .contentType(MediaType.APPLICATION_JSON)
            .content(request))
        .andExpect(status().isUnauthorized());
  }