public static String getContent()

in src/it/java/com/epam/digital/data/platform/user/util/TestUtils.java [26:33]


  public static String getContent(String filePath) {
    try {
      return copyToString(TestUtils.class.getClassLoader().getResourceAsStream(filePath),
          StandardCharsets.UTF_8);
    } catch (IOException e) {
      throw new RuntimeException(e);
    }
  }