org.apache.cactus.internal.server.runner
public class: WebappTestSuiteLoader [javadoc |
source]
java.lang.Object
org.apache.cactus.internal.server.runner.WebappTestSuiteLoader
All Implemented Interfaces:
junit.runner.TestSuiteLoader
Dynamic class loader to load classes from the webapp classpath.
- version:
$ - Id: WebappTestSuiteLoader.java 238991 2004-05-22 11:34:50Z vmassol $
| Method from org.apache.cactus.internal.server.runner.WebappTestSuiteLoader Summary: |
|---|
|
load, reload |
| Method from org.apache.cactus.internal.server.runner.WebappTestSuiteLoader Detail: |
public Class load(String theSuiteClassName) throws ClassNotFoundException {
return ClassLoaderUtils.loadClass(theSuiteClassName, this.getClass());
}
Try to load the test suite class using both the context class loader
or the class loader that loaded this class. |
public Class reload(Class theClass) throws ClassNotFoundException {
throw new ClassNotFoundException("Feature not implemented");
}
Not implemented. Used to reload a class. |