01: /*
02: * Copyright 2006 The Apache Software Foundation.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package org.apache.commons.logging.tccl;
17:
18: import org.apache.commons.logging.Log;
19: import org.apache.commons.logging.LogFactory;
20: import org.apache.commons.logging.PathableClassLoader;
21: import org.apache.commons.logging.PathableTestSuite;
22:
23: import junit.framework.Test;
24: import junit.framework.TestCase;
25:
26: /**
27: * Simulates the case when TCCL is badly set and cannot load JCL.
28: */
29: public class BadTCCLTestCase extends TestCase {
30:
31: public static Test suite() throws Exception {
32: PathableClassLoader contextClassLoader = new PathableClassLoader(
33: null);
34: contextClassLoader.useSystemLoader("junit.");
35: PathableTestSuite suite = new PathableTestSuite(
36: BadTCCLTestCase.class, contextClassLoader);
37: return suite;
38: }
39:
40: // test methods
41:
42: /**
43: * This test just tests that a log implementation can be found
44: * by the LogFactory.
45: */
46: public void testGetLog() {
47: Log log = LogFactory.getLog(BadTCCLTestCase.class);
48: log.debug("Hello, Mum");
49: }
50: }
|