KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cactus > internal > server > runner > WebappTestSuiteLoader


1 /*
2  * ========================================================================
3  *
4  * Copyright 2001-2004 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * ========================================================================
19  */

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 /**
27  * Dynamic class loader to load classes from the webapp classpath.
28  *
29  * @version $Id: WebappTestSuiteLoader.java,v 1.1 2004/05/22 11:34:46 vmassol Exp $
30  */

31 public class WebappTestSuiteLoader implements TestSuiteLoader
32 {
33     /**
34      * Try to load the test suite class using both the context class loader
35      * or the class loader that loaded this class.
36      *
37      * @param theSuiteClassName the test suite class to load
38      * @return the test suite class object
39      * @throws ClassNotFoundException if failed to load the class
40      */

41     public Class JavaDoc load(String JavaDoc theSuiteClassName) throws ClassNotFoundException JavaDoc
42     {
43         return ClassLoaderUtils.loadClass(theSuiteClassName, this.getClass());
44     }
45
46     /**
47      * Not implemented. Used to reload a class.
48      *
49      * @param theClass the class to reload
50      * @return the reloaded class
51      * @throws ClassNotFoundException if an error occurs during reloading
52      */

53     public Class JavaDoc reload(Class JavaDoc theClass) throws ClassNotFoundException JavaDoc
54     {
55         throw new ClassNotFoundException JavaDoc("Feature not implemented");
56     }
57 }
58
Popular Tags