*/
public Map<Integer, Integer> getTestCases(String fileKey, CoverageService.TYPE type) {
if (TYPE.UT.equals(type)) {
Testable testable = snapshotPerspectives.as(MutableTestable.class, fileKey);
if (testable != null) {
return testable.testCasesByLines();
}
}
return Maps.newHashMap();
}