source: other-projects/trunk/gs3-release-maker/tasks/antelope/src/ise/antelope/tasks/TestStatisticAccumulator.java@ 14627

Last change on this file since 14627 was 14627, checked in by oranfry, 17 years ago

initial import of the gs3-release-maker

File size: 334 bytes
Line 
1package ise.antelope.tasks;
2
3import java.util.Enumeration;
4
5interface TestStatisticAccumulator {
6 public int getFailedCount();
7 public Enumeration getFailures();
8 public int getWarningCount();
9 public int getPassedCount();
10 public int getRanCount();
11 public String getSummary();
12 public int getTestCaseCount();
13}
Note: See TracBrowser for help on using the repository browser.