in src/it/java/com/epam/digital/data/platform/bphistory/service/api/TestUtils.java [32:35]
public static String readClassPathResource(String path) {
var resource = TestUtils.class.getResourceAsStream(path);
return new String(Objects.requireNonNull(resource).readAllBytes(), StandardCharsets.UTF_8);
}