blob: 8a14e80e37a75e3923bfa26790e4a83b5fc7ce38 [file] [log] [blame]
package junit.util;
/**
* The standard test suite loader. It can only load the same class once.
*/
public class StandardTestSuiteLoader implements TestSuiteLoader {
/**
* Uses the system class loader to load the test class
*/
public Class load(String suiteClassName) throws ClassNotFoundException {
return Class.forName(suiteClassName);
}
/**
* Uses the system class loader to load the test class
*/
public Class reload(Class aClass) throws ClassNotFoundException {
return aClass;
}
}