TestListener

package org.junit.runner;

public interface TestListener {

    void testRunStarted(int testCount);
    void testRunFinished(Runner runner); //TODO: Something is wrong here... 
                                         //Should take an event anyway  
    void testStarted(Object test, String name);
    void testFinished(Object test, String name);
    void testFailure(Failure failure);
    void testIgnored(Object method);

}

Previous | Next | Top | Cafe con Leche

Copyright 2005 Elliotte Rusty Harold
elharo@metalab.unc.edu
Last Modified August 23. 2005