junit.runner.StandardTestSuiteLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dragome-bytecode-js-compiler Show documentation
Show all versions of dragome-bytecode-js-compiler Show documentation
Dragome SDK module: bytecode to javascript compiler
package junit.runner;
/**
* 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;
}
}