1 20 package org.apache.cactus.internal.server.runner; 21 22 import junit.runner.TestSuiteLoader; 23 24 import org.apache.cactus.internal.util.ClassLoaderUtils; 25 26 31 public class WebappTestSuiteLoader implements TestSuiteLoader 32 { 33 41 public Class load(String theSuiteClassName) throws ClassNotFoundException  42 { 43 return ClassLoaderUtils.loadClass(theSuiteClassName, this.getClass()); 44 } 45 46 53 public Class reload(Class theClass) throws ClassNotFoundException  54 { 55 throw new ClassNotFoundException ("Feature not implemented"); 56 } 57 } 58 | Popular Tags |