blob: c846191fdd54406a533170cc98a0d0f20085ec9b [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001package junit.runner;
2
3// The following line was removed for compatibility with Android libraries.
Brett Chabotf1253cd2012-01-30 11:29:54 -08004//import java.awt.Component;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005
6import junit.framework.*;
7
8/**
9 * A view to show a details about a failure
10 * {@hide} - Not needed for 1.0 SDK
11 */
12public interface FailureDetailView {
13 // The following definition was removed for compatibility with Android
14 // libraries.
John Spurlock8a985d22014-02-25 09:40:05 -050015 // /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080016 // * Returns the component used to present the TraceView
17 // */
18 // public Component getComponent();
19
Brett Chabotf1253cd2012-01-30 11:29:54 -080020 /**
21 * Shows details of a TestFailure
22 */
23 public void showFailure(TestFailure failure);
24 /**
25 * Clears the view
26 */
27 public void clear();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028}