junit.runner.FailureDetailView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dragome-bytecode-js-compiler Show documentation
Show all versions of dragome-bytecode-js-compiler Show documentation
Dragome SDK module: bytecode to javascript compiler
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();
}