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