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