protected final String fileContent()

in src/it/java/com/epam/digital/data/platform/usrtaskmgt/BaseIT.java [146:153]


  protected final String fileContent(String filePath) {
    var resource = BaseIT.class.getResource(filePath);
    if (Objects.isNull(resource)) {
      throw new IllegalArgumentException(
          String.format("Resource %s not found in classpath", filePath));
    }
    return Files.readString(Paths.get(resource.toURI()), StandardCharsets.UTF_8);
  }