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