Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/simscomputing/testbed/Tester.java


1   package com.simscomputing.testbed;
2   
3   /**
4   A tester provides a user interface for testing Java classes. All
5   testers, such as DefaultTester and GuiTester, implement Tester.
6   
7   @author David Sims
8   @version $Revision: 1.1.1.1 $ $Date: 2000/02/21 21:22:34 $ */
9   public interface Tester {
10  //    public TestResultCollection test(String[] testCaseCollectionClassNames);
11    public TestResultCollection exercise() throws TesterException;
12  
13    public String getName();
14  } // interface Tester