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