blob: e362d26ee3220e3e7788b819ff74a8cdf99f7f52 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.junit.ui;
/**
* Extends ITestRunListener2 with a call back to trace the test contents
*/
public interface ITestRunListener3 extends ITestRunListener2 {
public void testFailed(int status, String testId, String testName, String trace, String expected, String actual);
public void testReran(String testId, String className, String testName, int statusCode, String trace, String expectedResult, String actualResult);
}