We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78c9a1c commit 545ac67Copy full SHA for 545ac67
tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/TestRunLogUtil.java
@@ -40,6 +40,12 @@ protected void starting(Description description) {
40
System.out.println(formatTestStartMessage(description.getMethodName()));
41
}
42
43
+ @Override
44
+ protected void failed(Throwable e, Description description) {
45
+ System.out.println(description.getMethodName() + " failed:");
46
+ e.printStackTrace(System.out);
47
+ }
48
+
49
@Override
50
protected void finished(Description description) {
51
System.out.println(formatTestFinishedMessage(description.getMethodName()));
0 commit comments