Files
frameworks_base/test-runner/src/junit/runner/TestCollector.java
Brett Chabot e70f61b116 Retry test-runner tests move.
This time change the frameworks makefile so it only includes test-runner/src
in the public API.
2010-02-20 17:29:05 -08:00

18 lines
326 B
Java

package junit.runner;
import java.util.*;
/**
* Collects Test class names to be presented
* by the TestSelector.
* @see TestSelector
* {@hide} - Not needed for 1.0 SDK
*/
public interface TestCollector {
/**
* Returns an enumeration of Strings with qualified class names
*/
public Enumeration collectTests();
}