in src/it/java/com/epam/digital/data/platform/excerpt/worker/TemplateCephServiceMockHelper.java [61:67]
private Map<String, byte[]> getFilesWithFullPath(
Map<String, byte[]> filesWithFolderPath, String folderPath) {
Map<String, byte[]> result = new HashMap<>();
filesWithFolderPath.forEach((key, value) -> result.put(folderPath + "/" + key, value));
return result;
}