001: /*
002: * @(#)ServerUTestI.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 net.sourceforge.groboutils.testing.junitlog.v1.*;
032: import org.easymock.EasyMock;
033: import org.easymock.MockControl;
034: import net.sourceforge.groboutils.junit.v1.iftc.*;
035: import junit.framework.Test;
036: import junit.framework.TestCase;
037: import junit.framework.TestSuite;
038:
039: /**
040: * Tests the Server interface.
041: *
042: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
043: * @since March 27, 2002
044: * @version $Date: 2003/02/10 22:52:17 $
045: */
046: public class ServerUTestI extends InterfaceTestCase {
047: //-------------------------------------------------------------------------
048: // Standard JUnit Class-specific declarations
049:
050: private static final Class THIS_CLASS = ServerUTestI.class;
051:
052: // private static final IJUnitDocumentor LOG = (new JUnitLog(THIS_CLASS)).getDocumentor();
053:
054: public ServerUTestI(String name, ImplFactory f) {
055: super (name, Server.class, f);
056: }
057:
058: public Server createServer() {
059: return (Server) createImplObject();
060: }
061:
062: //-------------------------------------------------------------------------
063: // Tests
064:
065: public void testAddTestData1() {
066: Server s = createServer();
067:
068: // must run w/o exception.
069: s.addTestData(null);
070: }
071:
072: public void testAddTestData2() {
073: TestData td = new TestData() {
074: public TestInfo getTestInfo() {
075: return null;
076: }
077: };
078:
079: Server s = createServer();
080:
081: // must run w/o exception.
082: s.addTestData(td);
083: }
084:
085: public void testAddTestData3() {
086: final TestInfo ti = new DefaultTestInfo("a", "b");
087: TestData td = new TestData() {
088: public TestInfo getTestInfo() {
089: return ti;
090: }
091: };
092:
093: Server s = createServer();
094:
095: // must run w/o exception.
096: s.addTestData(td);
097: }
098:
099: public void testAddTestData4() {
100: final TestInfo ti = new DefaultTestInfo();
101: TestData td = new TestData() {
102: public TestInfo getTestInfo() {
103: return ti;
104: }
105: };
106:
107: Server s = createServer();
108:
109: // must run w/o exception.
110: s.addTestData(td);
111: }
112:
113: //-------------------------------------------------------------------------
114: // Standard JUnit declarations
115:
116: public static InterfaceTestSuite suite() {
117: InterfaceTestSuite suite = new InterfaceTestSuite(THIS_CLASS);
118:
119: return suite;
120: }
121:
122: public static void main(String[] args) {
123: String[] name = { THIS_CLASS.getName() };
124:
125: // junit.textui.TestRunner.main( name );
126: // junit.swingui.TestRunner.main( name );
127:
128: junit.textui.TestRunner.main(name);
129: }
130:
131: /**
132: *
133: * @exception Exception thrown under any exceptional condition.
134: */
135: protected void setUp() throws Exception {
136: super .setUp();
137:
138: // set ourself up
139: }
140:
141: /**
142: *
143: * @exception Exception thrown under any exceptional condition.
144: */
145: protected void tearDown() throws Exception {
146: // tear ourself down
147:
148: super.tearDown();
149: }
150: }
|