1 17 package org.apache.tools.ant.taskdefs.optional.junit; 18 19 import junit.framework.TestCase; 20 21 26 public class JUnitClassLoaderTest extends TestCase { 27 28 public JUnitClassLoaderTest(String s) { 29 super(s); 30 } 31 32 public void testContextClassLoader(){ 33 ClassLoader context = Thread.currentThread().getContextClassLoader(); 34 ClassLoader caller = getClass().getClassLoader(); 35 assertSame(context, caller); 36 } 37 } 38 | Popular Tags |