Map<Integer, Integer> conditions = coverageService.getConditions(fileKey, type);
Map<Integer, Integer> coveredConditions = coverageService.getCoveredConditions(fileKey, type);
writeCoverage(hits, testCases, conditions, coveredConditions, from, to, json);
}
json.endObject().close();
}
private void writeCoverage(Map<Integer, Integer> hitsByLine,
Map<Integer, Integer> testCasesByLines,
Map<Integer, Integer> conditionsByLine,