001: /*
002: * @(#)TestDataFactoryUTestI.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 TestDataFactory 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:18 $
045: */
046: public class TestDataFactoryUTestI extends InterfaceTestCase {
047: //-------------------------------------------------------------------------
048: // Standard JUnit Class-specific declarations
049:
050: private static final Class THIS_CLASS = TestDataFactoryUTestI.class;
051:
052: // private static final IJUnitDocumentor LOG = (new JUnitLog(THIS_CLASS)).getDocumentor();
053:
054: public TestDataFactoryUTestI(String name, ImplFactory f) {
055: super (name, TestDataFactory.class, f);
056: }
057:
058: public TestDataFactory createTestDataFactory() {
059: return (TestDataFactory) createImplObject();
060: }
061:
062: //-------------------------------------------------------------------------
063: // Tests
064:
065: public void testCreateTestData1() {
066: TestDataFactory tdf = createTestDataFactory();
067: try {
068: tdf.createTestData(null);
069: fail("did not throw IllegalArgumentException.");
070: } catch (IllegalArgumentException e) {
071: // examine exception?
072: }
073: }
074:
075: public void testCreateTestData2() {
076: DefaultTestInfo dti = new DefaultTestInfo();
077: TestDataFactory tdf = createTestDataFactory();
078: TestData td = tdf.createTestData(dti);
079: assertNotNull("factory " + tdf + " returned null.", td);
080: }
081:
082: //-------------------------------------------------------------------------
083: // Standard JUnit declarations
084:
085: public static InterfaceTestSuite suite() {
086: InterfaceTestSuite suite = new InterfaceTestSuite(THIS_CLASS);
087:
088: return suite;
089: }
090:
091: public static void main(String[] args) {
092: String[] name = { THIS_CLASS.getName() };
093:
094: // junit.textui.TestRunner.main( name );
095: // junit.swingui.TestRunner.main( name );
096:
097: junit.textui.TestRunner.main(name);
098: }
099:
100: /**
101: *
102: * @exception Exception thrown under any exceptional condition.
103: */
104: protected void setUp() throws Exception {
105: super .setUp();
106:
107: // set ourself up
108: }
109:
110: /**
111: *
112: * @exception Exception thrown under any exceptional condition.
113: */
114: protected void tearDown() throws Exception {
115: // tear ourself down
116:
117: super.tearDown();
118: }
119: }
|