tss.getTestsuite().add(ts);
}
@Override
public void notifyParameterEnd(String setName, String parameterName) {
Testsuites tss = results.get(setName);
Testsuite ts = result.get(setName + parameterName);
tss.setDisabled(tss.getDisabled() + ts.getDisabled());
tss.setErrors(tss.getErrors() + ts.getErrors());
tss.setFailures(tss.getFailures() + ts.getFailures());
tss.setTests(tss.getTests() + ts.getTests());
tss.setTime(tss.getTime() + ts.getTime());
}