001: /*
002: * @(#)DefaultTestDataUTest.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.junit.v1.iftc.*;
032: import junit.framework.Test;
033: import junit.framework.TestCase;
034: import junit.framework.TestSuite;
035:
036: /**
037: * Tests the DefaultTestData class.
038: *
039: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
040: * @since April 8, 2002
041: * @version $Date: 2003/02/10 22:52:17 $
042: */
043: public class DefaultTestDataUTest extends TestCase {
044: //-------------------------------------------------------------------------
045: // Standard JUnit Class-specific declarations
046:
047: private static final Class THIS_CLASS = DefaultTestDataUTest.class;
048:
049: public DefaultTestDataUTest(String name) {
050: super (name);
051: }
052:
053: //-------------------------------------------------------------------------
054: // setup
055:
056: /**
057: *
058: * @exception Exception thrown under any exceptional condition.
059: */
060: protected void setUp() throws Exception {
061: super .setUp();
062:
063: // set ourself up
064: }
065:
066: //-------------------------------------------------------------------------
067: // Tests
068:
069: public void testConstructor1() {
070: try {
071: new DefaultTestData(null);
072: fail("did not throw IllegalArgumentException");
073: } catch (IllegalArgumentException e) {
074: // test exception?
075: }
076: }
077:
078: public void testConstructor2() {
079: TestInfo ti = new DefaultTestInfo();
080: TestData td = new DefaultTestData(ti);
081: assertEquals(
082: "returned test info did not match constructor's test info.",
083: ti, td.getTestInfo());
084: }
085:
086: //-------------------------------------------------------------------------
087: // Helpers
088:
089: //-------------------------------------------------------------------------
090: // Standard JUnit declarations
091:
092: public static Test suite() {
093: InterfaceTestSuite suite = TestDataUTestI.suite();
094: suite.addTestSuite(THIS_CLASS);
095: suite.addFactory(new CxFactory("A") {
096: public Object createImplObject() {
097: return new DefaultTestData(new DefaultTestInfo());
098: }
099: });
100:
101: return suite;
102: }
103:
104: public static void main(String[] args) {
105: String[] name = { THIS_CLASS.getName() };
106:
107: // junit.textui.TestRunner.main( name );
108: // junit.swingui.TestRunner.main( name );
109:
110: junit.textui.TestRunner.main(name);
111: }
112:
113: /**
114: *
115: * @exception Exception thrown under any exceptional condition.
116: */
117: protected void tearDown() throws Exception {
118: // tear ourself down
119:
120: super.tearDown();
121: }
122: }
|