001: /*
002: * @(#)PathIteratorImplUTest.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.mbtf.v1.engine;
028:
029: import org.easymock.EasyMock;
030: import org.easymock.MockControl;
031: import junit.framework.Test;
032: import junit.framework.TestCase;
033: import junit.framework.TestSuite;
034:
035: import net.sourceforge.groboutils.mbtf.v1.IError;
036: import net.sourceforge.groboutils.mbtf.v1.IErrors;
037: import net.sourceforge.groboutils.mbtf.v1.ISystem;
038: import net.sourceforge.groboutils.mbtf.v1.IAction;
039: import net.sourceforge.groboutils.mbtf.v1.ITransition;
040: import net.sourceforge.groboutils.mbtf.v1.IPathHistory;
041: import net.sourceforge.groboutils.mbtf.v1.TestHaltRuntimeException;
042:
043: import java.util.NoSuchElementException;
044:
045: /**
046: * Tests the PathIteratorImpl class.
047: *
048: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
049: * @version $Date: 2003/02/10 22:52:28 $
050: * @since March 21, 2002
051: */
052: public class PathIteratorImplUTest extends TestCase {
053: //-------------------------------------------------------------------------
054: // Standard JUnit Class-specific declarations
055:
056: private static final Class THIS_CLASS = PathIteratorImplUTest.class;
057:
058: public PathIteratorImplUTest(String name) {
059: super (name);
060: }
061:
062: //-------------------------------------------------------------------------
063: // setup
064:
065: /**
066: *
067: * @exception Exception thrown under any exceptional condition.
068: */
069: protected void setUp() throws Exception {
070: super .setUp();
071:
072: // set ourself up
073: }
074:
075: //-------------------------------------------------------------------------
076: // Tests
077:
078: private static class MyAction implements IAction {
079: public void performAction(ISystem s, IErrors e) {
080: }
081: }
082:
083: public void testNextTransition1() {
084: try {
085: (new PathIteratorImpl(null)).nextTransition();
086: fail("Did not throw NoSuchElementException");
087: } catch (NoSuchElementException e) {
088: // check exception
089: }
090: }
091:
092: public void testNextTransition2() {
093: TransitionImpl trans = new TransitionImpl("trans", null,
094: new MyAction(), null);
095: PathIteratorImpl pii = new PathIteratorImpl(
096: new ITransition[] { trans });
097: assertEquals("did not return correct transition.", trans, pii
098: .nextTransition());
099: }
100:
101: //-------------------------------------------------------------------------
102: // Helpers
103:
104: public void assertEquals(String msg, Object[] left, Object[] right) {
105: if (left == null) {
106: assertNull(msg, right);
107: } else {
108: assertNotNull(msg, right);
109: assertEquals(msg, left.length, right.length);
110: for (int i = left.length; ++i >= 0;) {
111: assertEquals(msg, left[i], right[i]);
112: }
113: }
114: }
115:
116: //-------------------------------------------------------------------------
117: // Standard JUnit declarations
118:
119: public static Test suite() {
120: TestSuite suite = new TestSuite(THIS_CLASS);
121:
122: // Test the implementation's interface conformity.
123: /*
124: suite.addTest( IxUTestI.suite(
125: new ImplementationCreator[] {
126: new ImplementationCreator() {
127: public Object createImplementedObject() {
128: // XXXXXXXXXXXXXXXXXXXXXXXX
129: }
130: },
131: } ) );
132: */
133: return suite;
134: }
135:
136: public static void main(String[] args) {
137: String[] name = { THIS_CLASS.getName() };
138:
139: // junit.textui.TestRunner.main( name );
140: // junit.swingui.TestRunner.main( name );
141:
142: junit.textui.TestRunner.main(name);
143: }
144:
145: /**
146: *
147: * @exception Exception thrown under any exceptional condition.
148: */
149: protected void tearDown() throws Exception {
150: // tear ourself down
151:
152: super.tearDown();
153: }
154: }
|