Method Summary |
|
public void | setUp() Setup for the test. |
public void | tearDown() Cleanup for the test. |
public void | testCCLFilterJavaClassSelfFirstTrue() testCCLFilterJavaClassSelfFirstTrue
tests the loading of a java.XXX class with the system classloader
as the parent and the "selfFirst" flag set to 'true'
The parent class loader should load this class even though the class
has been overloaded and is made available in the local Class Path. |
public void | testCCLFilterWSDLClassSelfFirstTrue() testCCLFilterWSDLSelfFirstTrue
tests the loading of a java.XXX class with the system classloader
as the parent and the "selfFirst" flag set to 'true'
The Custom class loader should load this class since this is a
case of a javax.XXX class not being available in the parent's
classloader. |
public void | testCCLLoadLocalClassSelfFirstFalse() testCCLLoadLocalClassSelfFirstFalse
tests the loading of a class with the system classloader
as the parent and the "selfFirst" flag set to 'false'
The class is visible to both the current as well as the
parent (system) classloader (workflow2.jar is in the ANT
class path) .
The System (Ant) class loader should load this class . |
public void | testCCLLoadLocalClassSelfFirstTrue() testCCLLoadLocalClassSelfFirstTrue
tests the loading of a class with the system classloader
as the parent and the "selfFirst" flag set to 'true'
The class is visible to both the current as well as the
parent (system) classloader (workflow2.jar is in the ANT
class path) .
The Custom class loader should load this class . |
public void | testCCLLoadLocalJavaxResourceSelfFirstFalse() testCCLLoadLocalJavaxResourceSelfFirstFalse
tests the loading of a resource with the system classloader
as the parent and the "selfFirst" flag set to 'false'. |
public void | testCCLLoadLocalJavaxResourceSelfFirstTrue() testCCLLoadLocalJavaxResourceSelfFirstTrue
tests the loading of a resource with the system classloader
as the parent and the "selfFirst" flag set to 'true'. |
public void | testCCLLoadLocalResourceSelfFirstFalse() testCCLLoadLocalResourceSelfFirstFalse
tests the loading of a resource with the system classloader
as the parent and the "selfFirst" flag set to 'false'
The resource is visible to both the current as well as the
parent (system) classloader (resources.jar is in the ANT
class path) .
The System (sun.misc.XXX) class loader should load this resource . |
public void | testCCLLoadLocalResourceSelfFirstTrue() testCCLLoadLocalResourceSelfFirstTrue
tests the loading of a resource with the system classloader
as the parent and the "selfFirst" flag set to 'true'
The resource is visible to both the current as well as the
parent (system) classloader (resources.jar is in the ANT
class path) .
The Custom class loader should load this resource . |
public void | testCCLLoadSystemClassSelfFirstFalse() |
public void | testCCLLoadSystemClassSelfFirstTrue() |
public void | testCreateCustomClassLoader() |