Files
frameworks_base/test-runner/src/junit/runner/TestSuiteLoader.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

10 lines
286 B
Java

package junit.runner;
/**
* An interface to define how a test suite should be loaded.
*/
public interface TestSuiteLoader {
abstract public Class load(String suiteClassName) throws ClassNotFoundException;
abstract public Class reload(Class aClass) throws ClassNotFoundException;
}