blob: 9cc6d81e125ec8f208e8cd0dd7b4bbd0f1ca432a [file] [log] [blame]
Paul Duffineef35dd2016-12-12 12:22:31 +00001package 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}