All Downloads are FREE. Search and download functionalities are using the official Maven repository.

junit.runner.FailureDetailView Maven / Gradle / Ivy

There is a newer version: 0.96-beta4
Show newest version
package junit.runner;

import java.awt.Component; 

import junit.framework.*;

/**
 * A view to show a details about a failure
 */
public interface FailureDetailView {
	/**
	 * Returns the component used to present the TraceView
	 */
	public Component getComponent();
	/**
	 * Shows details of a TestFailure
	 */
	public void showFailure(TestFailure failure);
	/**
	 * Clears the view
	 */
	public void clear();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy