public static String readClassPathResource()

in src/it/java/com/epam/digital/data/platform/excerpt/worker/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);
  }