1package junit.runner;
2
3/**
4 * An interface to define how a test suite should be loaded.
5 *
6 */
7//  TODO: deprecate
8public interface TestSuiteLoader {
9    abstract public Class load(String suiteClassName) throws ClassNotFoundException;
10    abstract public Class reload(Class aClass) throws ClassNotFoundException;
11}
12