* ClassLoader. This should load the parent's copy when
* contextPriorityClassLoader is set to false and the child's copy when
* the contextPriorityClassLoader is set to true (as here).
*/
public void xtestTrueExistantNonJavaxClass() {
cl = new MultiParentClassLoader(configId, urls, getClass().getClassLoader(), true, HIDDEN, NON_OVERRIDABLE);
try {
Class cls = cl.loadClass("mx4j.MBeanDescription");
assertTrue("Should be able to override a class that is not in java.*, javax.*, etc.", cls.getDeclaredMethods().length == 0);
} catch(ClassNotFoundException e) {
fail("Problem with test; expecting to have mx4j.* on the ClassPath");