FileDocCategorySizeDatePackage
TestCollector.javaAPI DocAndroid 1.5 API326Wed May 06 22:42:02 BST 2009junit.runner

TestCollector.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();
}