001: /*
002: * @(#)Log4jLogFactoryUTest.java
003: *
004: * Copyright (C) 2002-2003 Matt Albrecht
005: * groboclown@users.sourceforge.net
006: * http://groboutils.sourceforge.net
007: *
008: * Permission is hereby granted, free of charge, to any person obtaining a
009: * copy of this software and associated documentation files (the "Software"),
010: * to deal in the Software without restriction, including without limitation
011: * the rights to use, copy, modify, merge, publish, distribute, sublicense,
012: * and/or sell copies of the Software, and to permit persons to whom the
013: * Software is furnished to do so, subject to the following conditions:
014: *
015: * The above copyright notice and this permission notice shall be included in
016: * all copies or substantial portions of the Software.
017: *
018: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
019: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
020: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
021: * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
022: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
023: * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
024: * DEALINGS IN THE SOFTWARE.
025: */
026:
027: package net.sourceforge.groboutils.autodoc.v1.log4j;
028:
029: import net.sourceforge.groboutils.autodoc.v1.*;
030: import net.sourceforge.groboutils.autodoc.v1.spi.*;
031: import net.sourceforge.groboutils.autodoc.v1.defimpl.*;
032:
033: import net.sourceforge.groboutils.junit.v1.iftc.*;
034: import junit.framework.Test;
035: import junit.framework.TestCase;
036: import junit.framework.TestSuite;
037:
038: /**
039: * Tests the Log4jLogFactory class.
040: *
041: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
042: * @version $Date: 2003/02/10 22:52:16 $
043: * @since March 27, 2002
044: */
045: public class Log4jLogFactoryUTest extends TestCase {
046: //-------------------------------------------------------------------------
047: // Standard JUnit Class-specific declarations
048:
049: private static final Class THIS_CLASS = Log4jLogFactoryUTest.class;
050:
051: public Log4jLogFactoryUTest(String name) {
052: super (name);
053: }
054:
055: //-------------------------------------------------------------------------
056: // setup
057:
058: /**
059: *
060: * @exception Exception thrown under any exceptional condition.
061: */
062: protected void setUp() throws Exception {
063: super .setUp();
064:
065: // set ourself up
066: }
067:
068: //-------------------------------------------------------------------------
069: // Tests
070:
071: public void testConstructor1() {
072: new Log4jLogFactory();
073: }
074:
075: //-------------------------------------------------------------------------
076: // Helpers
077:
078: //-------------------------------------------------------------------------
079: // Standard JUnit declarations
080:
081: public static Test suite() {
082: InterfaceTestSuite suite = AutoDocLogFactoryUTestI.suite();
083: suite.addTestSuite(THIS_CLASS);
084: suite.addFactory(new CxFactory("A") {
085: public Object createImplObject() {
086: return new Log4jLogFactory();
087: }
088: });
089:
090: return suite;
091: }
092:
093: public static void main(String[] args) {
094: String[] name = { THIS_CLASS.getName() };
095:
096: // junit.textui.TestRunner.main( name );
097: // junit.swingui.TestRunner.main( name );
098:
099: junit.textui.TestRunner.main(name);
100: }
101:
102: /**
103: *
104: * @exception Exception thrown under any exceptional condition.
105: */
106: protected void tearDown() throws Exception {
107: // tear ourself down
108:
109: super.tearDown();
110: }
111: }
|