blob: c3d237e91d432a085447c4abd4a5e0930aee91e0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
* David Saff (saff@mit.edu) - initial API and implementation
* (bug 102632: [JUnit] Support for JUnit 4.)
*******************************************************************************/
package org.eclipse.jdt.internal.junit.launcher;
import java.util.Set;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.core.IType;
/**
* Interface to be implemented by for extension point
* org.eclipse.jdt.junit.internal_testKinds.
*/
public interface ITestFinder {
ITestFinder NULL= new ITestFinder() {
@Override
public void findTestsInContainer(IJavaElement element, Set<IType> result, IProgressMonitor pm) {
// do nothing
}
@Override
public boolean isTest(IType type) {
return false;
}
};
/**
* @param element element to search for tests
* @param result a Set to add ITypes
* @param pm the progress monitor
* @throws CoreException thrown when tests can not be found
*/
void findTestsInContainer(IJavaElement element, Set<IType> result, IProgressMonitor pm) throws CoreException;
boolean isTest(IType type) throws CoreException;
}