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. package org.apache.tools.ant.taskdefs.optional.junit;
  18. import java.io.OutputStream;
  19. import junit.framework.TestListener;
  20. import org.apache.tools.ant.BuildException;
  21. /**
  22. * This Interface describes classes that format the results of a JUnit
  23. * testrun.
  24. *
  25. */
  26. public interface JUnitResultFormatter extends TestListener {
  27. /**
  28. * The whole testsuite started.
  29. */
  30. void startTestSuite(JUnitTest suite) throws BuildException;
  31. /**
  32. * The whole testsuite ended.
  33. */
  34. void endTestSuite(JUnitTest suite) throws BuildException;
  35. /**
  36. * Sets the stream the formatter is supposed to write its results to.
  37. */
  38. void setOutput(OutputStream out);
  39. /**
  40. * This is what the test has written to System.out
  41. */
  42. void setSystemOutput(String out);
  43. /**
  44. * This is what the test has written to System.err
  45. */
  46. void setSystemError(String err);
  47. }