001: /*
002: * @(#)IProblemManagerInfoUTestI.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;
028:
029: import net.sourceforge.groboutils.autodoc.v1.AutoDoc;
030: import org.easymock.EasyMock;
031: import org.easymock.MockControl;
032: import net.sourceforge.groboutils.junit.v1.iftc.*;
033: import junit.framework.Test;
034: import junit.framework.TestCase;
035: import junit.framework.TestSuite;
036:
037: /**
038: * Tests the IProblemManagerInfo interface.
039: *
040: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
041: * @since July 14, 2002
042: * @version $Date: 2003/02/10 22:52:01 $
043: */
044: public class IProblemManagerInfoUTestI extends InterfaceTestCase {
045: //-------------------------------------------------------------------------
046: // Standard JUnit Class-specific declarations
047:
048: private static final Class THIS_CLASS = IProblemManagerInfoUTestI.class;
049: private static final AutoDoc DOC = new AutoDoc(THIS_CLASS);
050:
051: public IProblemManagerInfoUTestI(String name, ImplFactory f) {
052: super (name, IProblemManagerInfo.class, f);
053: }
054:
055: public IProblemManagerInfo createIProblemManagerInfo() {
056: return (IProblemManagerInfo) createImplObject();
057: }
058:
059: //-------------------------------------------------------------------------
060: // Tests
061:
062: public void testGetIssueTypes1() {
063: IProblemManagerInfo pmi = createIProblemManagerInfo();
064: String[] it = pmi.getIssueTypes();
065: assertNotNull("Null issue types array.", it);
066: for (int i = 0; i < it.length; ++i) {
067: assertNotNull("Null issue type at index " + i + ".", it[i]);
068: assertTrue("Empty issue type at index " + i + ".", it[i]
069: .trim().length() > 0);
070: }
071: }
072:
073: public void testGetDefaultType1() {
074: IProblemManagerInfo pmi = createIProblemManagerInfo();
075: String dt = pmi.getDefaultType();
076: assertNotNull("Null default type.", dt);
077:
078: // final test for this method.
079: String[] it = pmi.getIssueTypes();
080: for (int i = 0; i < it.length; ++i) {
081: if (it[i].equals(dt)) {
082: return;
083: }
084: }
085: fail("Issue type list did not contain default type.");
086: }
087:
088: public void testGetTypeInfo1() {
089: IProblemManagerInfo pmi = createIProblemManagerInfo();
090: String[] it = pmi.getIssueTypes();
091: for (int i = 0; i < it.length; ++i) {
092: IIssueTypeInfo iti = pmi.getTypeInfo(it[i]);
093: assertNotNull("Null type info for type " + it[i] + ".", iti);
094: }
095: }
096:
097: //-------------------------------------------------------------------------
098: // Standard JUnit declarations
099:
100: public static InterfaceTestSuite suite() {
101: InterfaceTestSuite suite = new InterfaceTestSuite(THIS_CLASS);
102:
103: return suite;
104: }
105:
106: public static void main(String[] args) {
107: String[] name = { THIS_CLASS.getName() };
108:
109: // junit.textui.TestRunner.main( name );
110: // junit.swingui.TestRunner.main( name );
111:
112: junit.textui.TestRunner.main(name);
113: }
114:
115: /**
116: *
117: * @exception Exception thrown under any exceptional condition.
118: */
119: protected void setUp() throws Exception {
120: super .setUp();
121:
122: // set ourself up
123: }
124:
125: /**
126: *
127: * @exception Exception thrown under any exceptional condition.
128: */
129: protected void tearDown() throws Exception {
130: // tear ourself down
131:
132: super.tearDown();
133: }
134: }
|