blob: 9cc6d81e125ec8f208e8cd0dd7b4bbd0f1ca432a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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;
}
|