001: /*
002: * @(#)AbstractWriterServerUTest.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.testserver;
028:
029: import net.sourceforge.groboutils.autodoc.v1.*;
030:
031: import org.easymock.EasyMock;
032: import org.easymock.MockControl;
033: import net.sourceforge.groboutils.junit.v1.iftc.*;
034: import junit.framework.Test;
035: import junit.framework.TestCase;
036: import junit.framework.TestSuite;
037: import net.sourceforge.groboutils.autodoc.v1.AutoDoc;
038:
039: import java.io.*;
040:
041: /**
042: * Tests the AbstractWriterServer abstract class.
043: *
044: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
045: * @since April 8, 2002
046: * @version $Date: 2003/02/10 22:52:17 $
047: */
048: public class AbstractWriterServerUTest extends TestCase {
049: //-------------------------------------------------------------------------
050: // Standard JUnit Class-specific declarations
051:
052: private static final Class THIS_CLASS = AbstractWriterServerUTest.class;
053:
054: public AbstractWriterServerUTest(String name) {
055: super (name);
056: }
057:
058: //-------------------------------------------------------------------------
059: // setup
060:
061: /**
062: *
063: * @exception Exception thrown under any exceptional condition.
064: */
065: protected void setUp() throws Exception {
066: super .setUp();
067:
068: // set ourself up
069: }
070:
071: //-------------------------------------------------------------------------
072: // Tests
073:
074: //-------------------------------------------------------------------------
075: // Helpers
076:
077: //-------------------------------------------------------------------------
078: // Standard JUnit declarations
079:
080: public static class MyAbstractWriterServer extends
081: AbstractWriterServer {
082: protected void writeTestData(TestData td, Writer w)
083: throws IOException {
084: assertNotNull("writer is null.", w);
085: // if test data is null, we are to fail gracefully.
086: }
087:
088: protected Writer openOutput(TestData td) throws IOException {
089: if (td == null) {
090: throw new NullPointerException("testData is null");
091: }
092: return new StringWriter();
093: }
094:
095: }
096:
097: public static TestSuite suite() {
098: InterfaceTestSuite suite = AbstractWriterServerUTestI.suite();
099: suite.addFactory(new CxFactory("A") {
100: public Object createImplObject() {
101: return new MyAbstractWriterServer();
102: }
103: });
104:
105: return suite;
106: }
107:
108: public static void main(String[] args) {
109: String[] name = { THIS_CLASS.getName() };
110:
111: // junit.textui.TestRunner.main( name );
112: // junit.swingui.TestRunner.main( name );
113:
114: junit.textui.TestRunner.main(name);
115: }
116:
117: /**
118: *
119: * @exception Exception thrown under any exceptional condition.
120: */
121: protected void tearDown() throws Exception {
122: // tear ourself down
123:
124: super.tearDown();
125: }
126: }
|