1 18 19 package org.apache.tools.ant.taskdefs.optional.junit; 20 21 import java.io.OutputStream ; 22 import junit.framework.TestListener; 23 import org.apache.tools.ant.BuildException; 24 25 30 public interface JUnitResultFormatter 31 extends TestListener, JUnitTaskMirror.JUnitResultFormatterMirror { 32 37 void startTestSuite(JUnitTest suite) throws BuildException; 38 39 44 void endTestSuite(JUnitTest suite) throws BuildException; 45 46 50 void setOutput(OutputStream out); 51 52 56 void setSystemOutput(String out); 57 58 62 void setSystemError(String err); 63 } 64 | Popular Tags |