001: /*
002: * @(#)ITFReadProblemManagerUTest.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.pmti.v1.itf;
028:
029: import net.sourceforge.groboutils.pmti.v1.*;
030: import net.sourceforge.groboutils.pmti.v1.itf.parser.*;
031:
032: import org.easymock.EasyMock;
033: import org.easymock.MockControl;
034: import junit.framework.Test;
035: import junit.framework.TestCase;
036: import junit.framework.TestSuite;
037: import net.sourceforge.groboutils.autodoc.v1.*;
038: import net.sourceforge.groboutils.junit.v1.iftc.*;
039: import junit.framework.AssertionFailedError;
040:
041: /**
042: * Tests the ITFReadProblemManager class.
043: *
044: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
045: * @version $Date: 2003/05/29 13:05:49 $
046: * @since July 14, 2002
047: */
048: public class ITFReadProblemManagerUTest extends TestCase {
049: //-------------------------------------------------------------------------
050: // Standard JUnit Class-specific declarations
051:
052: private static final Class THIS_CLASS = ITFReadProblemManagerUTest.class;
053: private static final AutoDoc DOC = new AutoDoc(THIS_CLASS);
054:
055: public ITFReadProblemManagerUTest(String name) {
056: super (name);
057: }
058:
059: //-------------------------------------------------------------------------
060: // setup
061:
062: /**
063: *
064: * @exception Exception thrown under any exceptional condition.
065: */
066: protected void setUp() throws Exception {
067: super .setUp();
068:
069: // set ourself up
070: }
071:
072: //-------------------------------------------------------------------------
073: // Tests
074:
075: public void testConstructor1() {
076: try {
077: new ITFReadProblemManager((IParser[]) null);
078: fail("Did not throw IllegalArgumentException.");
079: } catch (IllegalArgumentException e) {
080: // test exception ???
081: }
082: }
083:
084: //-------------------------------------------------------------------------
085: // Helpers
086:
087: //-------------------------------------------------------------------------
088: // Standard JUnit declarations
089:
090: public static Test suite() {
091: InterfaceTestSuite suite = IProblemManagerUTestI.suite();
092: suite.addTestSuite(THIS_CLASS);
093: suite.addFactory(new CxFactory("A") {
094: public Object createImplObject() {
095: IParser[] p = new IParser[0];
096: return new ITFReadProblemManager(p);
097: }
098: });
099:
100: return suite;
101: }
102:
103: public static void main(String[] args) {
104: String[] name = { THIS_CLASS.getName() };
105:
106: // junit.textui.TestRunner.main( name );
107: // junit.swingui.TestRunner.main( name );
108:
109: junit.textui.TestRunner.main(name);
110: }
111:
112: /**
113: *
114: * @exception Exception thrown under any exceptional condition.
115: */
116: protected void tearDown() throws Exception {
117: // tear ourself down
118:
119: super.tearDown();
120: }
121: }
|