001: /*
002: * @(#)IAttributeSetUTestI.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 IAttributeSet 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 IAttributeSetUTestI extends InterfaceTestCase {
045: //-------------------------------------------------------------------------
046: // Standard JUnit Class-specific declarations
047:
048: private static final Class THIS_CLASS = IAttributeSetUTestI.class;
049: private static final AutoDoc DOC = new AutoDoc(THIS_CLASS);
050:
051: public IAttributeSetUTestI(String name, ImplFactory f) {
052: super (name, IAttributeSet.class, f);
053: }
054:
055: public IAttributeSet createIAttributeSet() {
056: return (IAttributeSet) createImplObject();
057: }
058:
059: //-------------------------------------------------------------------------
060: // Tests
061:
062: public void testGetAttributes1() {
063: IAttributeSet set = createIAttributeSet();
064: IAttribute[] att = set.getAttributes();
065: assertNotNull("Null attribute array.", att);
066: for (int i = 0; i < att.length; ++i) {
067: assertNotNull("Attribute at index " + i + " is null.",
068: att[i]);
069: }
070: }
071:
072: public void testGetAttributeNames1() {
073: IAttributeSet set = createIAttributeSet();
074: String[] names = set.getAttributeNames();
075: assertNotNull("Null name array.", names);
076: for (int i = 0; i < names.length; ++i) {
077: assertNotNull("Name at index " + i + " is null.", names[i]);
078: }
079: }
080:
081: public void testGetAttribute1() {
082: IAttributeSet set = createIAttributeSet();
083: IAttribute[] att = set.getAttributes();
084: String[] names = set.getAttributeNames();
085: assertEquals(
086: "Number of attributes does not equal number of attribute names.",
087: att.length, names.length);
088:
089: int foundCount = 0;
090: for (int i = 0; i < names.length; ++i) {
091: IAttribute found = set.getAttribute(names[i]);
092: assertNotNull("Attribute named " + names[i] + " is null.",
093: found);
094: assertEquals("Attribute for name " + names[i]
095: + " is not right name.", names[i], found.getInfo()
096: .getName());
097: boolean foundIt = false;
098: for (int aIndex = 0; aIndex < att.length; ++aIndex) {
099: if (att[aIndex] != null
100: && names[i].equals(att[aIndex].getInfo()
101: .getName())) {
102: foundIt = true;
103: ++foundCount;
104: att[aIndex] = null;
105: break;
106: }
107: }
108: assertTrue(
109: "Did not find a getAttributes() version for attribute name "
110: + names[i], foundIt);
111: }
112: }
113:
114: //-------------------------------------------------------------------------
115: // Standard JUnit declarations
116:
117: public static InterfaceTestSuite suite() {
118: InterfaceTestSuite suite = new InterfaceTestSuite(THIS_CLASS);
119:
120: return suite;
121: }
122:
123: public static void main(String[] args) {
124: String[] name = { THIS_CLASS.getName() };
125:
126: // junit.textui.TestRunner.main( name );
127: // junit.swingui.TestRunner.main( name );
128:
129: junit.textui.TestRunner.main(name);
130: }
131:
132: /**
133: *
134: * @exception Exception thrown under any exceptional condition.
135: */
136: protected void setUp() throws Exception {
137: super .setUp();
138:
139: // set ourself up
140: }
141:
142: /**
143: *
144: * @exception Exception thrown under any exceptional condition.
145: */
146: protected void tearDown() throws Exception {
147: // tear ourself down
148:
149: super.tearDown();
150: }
151: }
|