![JAR search and dependency download from the Maven repository](/logo.png)
src.junit.runner.StandardTestSuiteLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-all Show documentation
Show all versions of android-all Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform.
package junit.runner;
// android-changed - class not present in upstream JUnit 4.10
// added here to retain BaseTestRunner.getLoader API
/**
* The standard test suite loader. It can only load the same class once.
* {@hide}
*/
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy