View Javadoc

1   /*
2    * Copyright  2001-2002,2004 The Apache Software Foundation
3    *
4    *  Licensed under the Apache License, Version 2.0 (the "License");
5    *  you may not use this file except in compliance with the License.
6    *  You may obtain a copy of the License at
7    *
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    *
10   *  Unless required by applicable law or agreed to in writing, software
11   *  distributed under the License is distributed on an "AS IS" BASIS,
12   *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   *  See the License for the specific language governing permissions and
14   *  limitations under the License.
15   *
16   */
17  
18  package org.woopi.ant.taskdefs.junit;
19  import java.io.OutputStream;
20  import junit.framework.TestListener;
21  import org.apache.tools.ant.BuildException;
22  
23  /***
24   * This Interface describes classes that format the results of a JUnit
25   * testrun.
26   *
27   */
28  public interface JUnitResultFormatter extends TestListener {
29      /***
30       * The whole testsuite started.
31       */
32      void startTestSuite(JUnitTest suite) throws BuildException;
33  
34      /***
35       * The whole testsuite ended.
36       */
37      void endTestSuite(JUnitTest suite) throws BuildException;
38  
39      /***
40       * Sets the stream the formatter is supposed to write its results to.
41       */
42      void setOutput(OutputStream out);
43  
44      /***
45       * This is what the test has written to System.out
46       */
47      void setSystemOutput(String out);
48  
49      /***
50       * This is what the test has written to System.err
51       */
52      void setSystemError(String err);
53  }