blob: b18cd0fb8d9a3661f82b363cf845abad6b1a300e [file] [log] [blame]
package org.eclipse.jdt.internal.junit.oldlauncher;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.IType;
/**
* Interface to JUnitLaunchers
*/
public interface IJUnitLauncherDelegate {
/**
* Returns the launched type.
*/
IType getLaunchedType();
/**
* Returns the port the TestRunner will connect to.
*/
int getPort();
}