Source code: com/simscomputing/testbed/Reporter.java
1 // Java Test Bed: tools for testing Java classes
2 // Copyright 1999 Sims Computing
3 // This software is licensed under the GNU General Public License,
4 // available at http://www.gnu.org/copyleft/gpl.html.
5
6 package com.simscomputing.testbed;
7
8 /**
9 A reporter shows the results of a test. All reporters, such as DefaultReporter and HtmlReporter,
10 implement Reporter.
11
12 @author David Sims
13 @version $Revision: 1.1.1.1 $ $Date: 2000/02/21 21:22:34 $
14 */
15 public interface Reporter {
16 void report(TestResultCollection testResultCollection);
17 } // interface Reporter