001: /*
002: * @(#)AutoDocJUnitFormatterJDK13UTest.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.junit;
028:
029: import org.easymock.EasyMock;
030: import org.easymock.MockControl;
031: import junit.framework.Test;
032: import junit.framework.TestCase;
033: import junit.framework.TestSuite;
034: import net.sourceforge.groboutils.autodoc.v1.AutoDoc;
035: import net.sourceforge.groboutils.junit.v1.iftc.*;
036: import junit.framework.AssertionFailedError;
037:
038: /**
039: * Tests the AutoDocJUnitFormatterJDK13UTest class.
040: *
041: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
042: * @since April 8, 2002
043: * @version $Date: 2003/02/10 22:52:16 $
044: */
045: public class AutoDocJUnitFormatterJDK13UTest extends TestCase {
046: //-------------------------------------------------------------------------
047: // Standard JUnit Class-specific declarations
048:
049: private static final Class THIS_CLASS = AutoDocJUnitFormatterJDK13UTest.class;
050: private static final AutoDoc AD = new AutoDoc(THIS_CLASS);
051:
052: public AutoDocJUnitFormatterJDK13UTest(String name) {
053: super (name);
054: }
055:
056: //-------------------------------------------------------------------------
057: // setup
058:
059: /**
060: *
061: * @exception Exception thrown under any exceptional condition.
062: */
063: protected void setUp() throws Exception {
064: super .setUp();
065:
066: // set ourself up
067: }
068:
069: //-------------------------------------------------------------------------
070: // Tests
071:
072: public void testConstructor1() {
073: new AutoDocJUnitFormatter();
074: }
075:
076: public void testStartTestSuite() {
077: createFormatter().startTestSuite(null);
078: }
079:
080: public void testEndTestSuite() {
081: createFormatter().endTestSuite(null);
082: }
083:
084: public void testSetOutput() {
085: createFormatter().setOutput(null);
086: }
087:
088: public void testSetSystemOutput() {
089: createFormatter().setSystemOutput(null);
090: }
091:
092: public void testSetSystemError() {
093: createFormatter().setSystemError(null);
094: }
095:
096: //-------------------------------------------------------------------------
097: // Helpers
098:
099: protected AutoDocJUnitFormatter createFormatter() {
100: return new AutoDocJUnitFormatter();
101: }
102:
103: //-------------------------------------------------------------------------
104: // Standard JUnit declarations
105:
106: public static Test suite() {
107: InterfaceTestSuite suite = AutoDocJUnitListenerUTestI.suite();
108: suite.addTestSuite(THIS_CLASS);
109: suite.addFactory(new CxFactory("A") {
110: public Object createImplObject() {
111: return new AutoDocJUnitFormatter();
112: }
113: });
114:
115: return suite;
116: }
117:
118: public static void main(String[] args) {
119: String[] name = { THIS_CLASS.getName() };
120:
121: // junit.textui.TestRunner.main( name );
122: // junit.swingui.TestRunner.main( name );
123:
124: junit.textui.TestRunner.main(name);
125: }
126:
127: /**
128: *
129: * @exception Exception thrown under any exceptional condition.
130: */
131: protected void tearDown() throws Exception {
132: // tear ourself down
133:
134: super.tearDown();
135: }
136: }
|