Map<String, Integer> refByTestPlan = newHashMap();
Map<String, Component> componentsByKey = newHashMap();
writeTests(testable, line, refByTestPlan, componentsByKey, json);
writeFiles(refByTestPlan, componentsByKey, json);
}
json.endObject().close();
}
private void writeTests(Testable testable, Integer line, Map<String, Integer> refByTestPlan, Map<String, Component> componentsByKey, JsonWriter json) {
json.name("tests").beginArray();
for (TestCase testCase : testable.testCasesOfLine(line)) {