source: release-kits/wirk3/ant-scripts/tasks/antelope/src/ise/antelope/tasks/TestStatisticAccumulator.java@ 15023

Last change on this file since 15023 was 15023, checked in by oranfry, 16 years ago

did the bulk of the work on wirk3

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.