blob: 9cc6d81e125ec8f208e8cd0dd7b4bbd0f1ca432a [file] [log] [blame]
package junit.runner;
/**
* An interface to define how a test suite should be loaded.
*
*/
// TODO: deprecate
public interface TestSuiteLoader {
abstract public Class load(String suiteClassName) throws ClassNotFoundException;
abstract public Class reload(Class aClass) throws ClassNotFoundException;
}