Package junit.runner
Class StandardTestSuiteLoader
- java.lang.Object
-
- junit.runner.StandardTestSuiteLoader
-
- All Implemented Interfaces:
TestSuiteLoader
public class StandardTestSuiteLoader extends java.lang.Object implements TestSuiteLoader
The standard test suite loader. It can only load the same class once.
-
-
Constructor Summary
Constructors Constructor Description StandardTestSuiteLoader()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class
load(java.lang.String suiteClassName)
Uses the system class loader to load the test classjava.lang.Class
reload(java.lang.Class aClass)
Uses the system class loader to load the test class
-
-
-
Method Detail
-
load
public java.lang.Class load(java.lang.String suiteClassName) throws java.lang.ClassNotFoundException
Uses the system class loader to load the test class- Specified by:
load
in interfaceTestSuiteLoader
- Throws:
java.lang.ClassNotFoundException
-
reload
public java.lang.Class reload(java.lang.Class aClass) throws java.lang.ClassNotFoundException
Uses the system class loader to load the test class- Specified by:
reload
in interfaceTestSuiteLoader
- Throws:
java.lang.ClassNotFoundException
-
-