in src/it/java/com/epam/digital/data/platform/usrprcssmgt/BaseIT.java [216:224]
public void mockGetForm(String respBody) {
mockRequest(formProviderServer, StubRequest.builder()
.method(HttpMethod.GET)
.path(urlPathEqualTo("/formKey"))
.status(200)
.responseBody(respBody)
.responseHeaders(Map.of("Content-Type", List.of("application/json")))
.build());
}