net.sf.jzeno.unittesting
Interface TestRunnerListener

All Superinterfaces:
junit.framework.TestListener
All Known Implementing Classes:
TestResults

public interface TestRunnerListener
extends junit.framework.TestListener


Method Summary
 void finish()
          This method is called after the last test is executed.
 void runFailed(java.lang.String message)
          This method is called when executing a test failed because the test class could not be loaded or an instance could not be created.
 void setStopped()
           
 void start(boolean singleTest)
          This method is called before the first test is executed.
 
Methods inherited from interface junit.framework.TestListener
addError, addFailure, endTest, startTest
 

Method Detail

start

void start(boolean singleTest)
This method is called before the first test is executed.

Parameters:
singleTest - true, if only a single test is run

finish

void finish()
This method is called after the last test is executed.


runFailed

void runFailed(java.lang.String message)
This method is called when executing a test failed because the test class could not be loaded or an instance could not be created.


setStopped

void setStopped()