001: /*
002: * @(#)DefaultProblemManagerInfoUTest.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.defimpl;
028:
029: import net.sourceforge.groboutils.pmti.v1.*;
030:
031: import org.easymock.EasyMock;
032: import org.easymock.MockControl;
033: import junit.framework.Test;
034: import junit.framework.TestCase;
035: import junit.framework.TestSuite;
036: import net.sourceforge.groboutils.autodoc.v1.*;
037: import net.sourceforge.groboutils.junit.v1.iftc.*;
038: import junit.framework.AssertionFailedError;
039:
040: /**
041: * Tests the DefaultProblemManagerInfo class.
042: *
043: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
044: * @version $Date: 2003/05/29 13:05:49 $
045: * @since July 20, 2002
046: */
047: public class DefaultProblemManagerInfoUTest extends TestCase {
048: //-------------------------------------------------------------------------
049: // Standard JUnit Class-specific declarations
050:
051: private static final Class THIS_CLASS = DefaultProblemManagerInfoUTest.class;
052: private static final AutoDoc DOC = new AutoDoc(THIS_CLASS);
053:
054: public DefaultProblemManagerInfoUTest(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: public void testConstructor1() {
075: try {
076: new DefaultProblemManagerInfo(null, null);
077: } catch (IllegalArgumentException iae) {
078: // test exception ???
079: }
080: }
081:
082: public void testConstructor2() {
083: try {
084: new DefaultProblemManagerInfo("a", null);
085: } catch (IllegalArgumentException iae) {
086: // test exception ???
087: }
088: }
089:
090: public void testConstructor3() {
091: IAttributeInfo[] at = {};
092: IIssueTypeInfo[] iti = { new DefaultIssueTypeInfo("1", at,
093: null, null, null), };
094: try {
095: new DefaultProblemManagerInfo(null, iti);
096: } catch (IllegalArgumentException iae) {
097: // test exception ???
098: }
099: }
100:
101: public void testConstructor4() {
102: IAttributeInfo[] at = {};
103: IIssueTypeInfo[] iti = { new DefaultIssueTypeInfo("1", at,
104: null, null, null), };
105: try {
106: new DefaultProblemManagerInfo("2", iti);
107: } catch (IllegalArgumentException iae) {
108: // test exception ???
109: }
110: }
111:
112: public void testConstructor5() {
113: IAttributeInfo[] at = {};
114: IIssueTypeInfo[] iti = { new DefaultIssueTypeInfo("1", at,
115: null, null, null), };
116: new DefaultProblemManagerInfo("1", iti);
117: }
118:
119: public void testConstructor6() {
120: IAttributeInfo[] at = {};
121: IIssueTypeInfo[] iti = {
122: new DefaultIssueTypeInfo("2", at, null, null, null),
123: new DefaultIssueTypeInfo("3", at, null, null, null),
124: new DefaultIssueTypeInfo("1", at, null, null, null), };
125: new DefaultProblemManagerInfo("1", iti);
126: }
127:
128: public void testConstructor7() {
129: IAttributeInfo[] at = {};
130: IIssueTypeInfo[] iti = {
131: new DefaultIssueTypeInfo("2", at, null, null, null),
132: new DefaultIssueTypeInfo("3", at, null, null, null),
133: new DefaultIssueTypeInfo("1", at, null, null, null),
134: new DefaultIssueTypeInfo("2", at, null, null, null), };
135: new DefaultProblemManagerInfo("1", iti);
136: }
137:
138: //-------------------------------------------------------------------------
139: // Helpers
140:
141: //-------------------------------------------------------------------------
142: // Standard JUnit declarations
143:
144: public static Test suite() {
145: InterfaceTestSuite suite = IProblemManagerInfoUTestI.suite();
146: suite.addTestSuite(THIS_CLASS);
147: suite.addFactory(new CxFactory("A") {
148: public Object createImplObject() {
149: IAttributeInfo[] at = {};
150: IIssueTypeInfo[] iti = { new DefaultIssueTypeInfo("1",
151: at, null, null, null), };
152: return new DefaultProblemManagerInfo("1", iti);
153: }
154: });
155:
156: return suite;
157: }
158:
159: public static void main(String[] args) {
160: String[] name = { THIS_CLASS.getName() };
161:
162: // junit.textui.TestRunner.main( name );
163: // junit.swingui.TestRunner.main( name );
164:
165: junit.textui.TestRunner.main(name);
166: }
167:
168: /**
169: *
170: * @exception Exception thrown under any exceptional condition.
171: */
172: protected void tearDown() throws Exception {
173: // tear ourself down
174:
175: super.tearDown();
176: }
177: }
|