|
|||||||||||||||||||
| 30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| WebappTestSuiteLoader.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 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 238991 2004-05-22 11:34:50Z vmassol $
|
|
| 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 | 0 |
public Class load(String theSuiteClassName) throws ClassNotFoundException |
| 42 |
{
|
|
| 43 | 0 |
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 | 0 |
public Class reload(Class theClass) throws ClassNotFoundException |
| 54 |
{
|
|
| 55 | 0 |
throw new ClassNotFoundException("Feature not implemented"); |
| 56 |
} |
|
| 57 |
} |
|
| 58 |
|
|
||||||||||