blob: 73a4ce1ecde3d2d3b4cd7aa24b7a780be10b4ad7 [file] [log] [blame]
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package vogar;
import java.io.File;
import java.util.Set;
import vogar.target.Runner;
/**
* Defines a runner for a type of Java code, such as a JUnit test, benchmark,
* or class with main method.
*/
public interface RunnerSpec {
/**
* Returns all actions in the given file or directory. If the returned set
* is empty, no executable code of this kind were found.
*/
Set<Action> findActions(File file);
/**
* Returns true if this runner can exercise {@code clazz}.
*
* @param clazz a fully qualified classname.
*/
boolean supports(String clazz);
/**
* Return the class for the TestRunner
*/
Class<? extends Runner> getRunnerClass();
/**
* Return the Java file for the TestRunner
*/
File getSource();
/**
* Return the compile classpath for the TestRunner
*/
Classpath getClasspath();
}