001: /*
002: * @(#)ErrorImplJDK13UTest.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.IPathHistory;
036:
037: /**
038: * Tests the ErrorImpl class.
039: *
040: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
041: * @version $Date: 2003/02/10 22:52:28 $
042: * @since March 21, 2002
043: */
044: public class ErrorImplJDK13UTest extends TestCase {
045: //-------------------------------------------------------------------------
046: // Standard JUnit Class-specific declarations
047:
048: private static final Class THIS_CLASS = ErrorImplJDK13UTest.class;
049:
050: public ErrorImplJDK13UTest(String name) {
051: super (name);
052: }
053:
054: //-------------------------------------------------------------------------
055: // setup
056:
057: private MockControl phControl;
058: private IPathHistory mockPH;
059:
060: /**
061: *
062: * @exception Exception thrown under any exceptional condition.
063: */
064: protected void setUp() throws Exception {
065: super .setUp();
066:
067: // set ourself up
068: this .phControl = EasyMock.controlFor(IPathHistory.class);
069: this .mockPH = (IPathHistory) this .phControl.getMock();
070: }
071:
072: //-------------------------------------------------------------------------
073: // Tests
074:
075: public void testConstructor1() {
076: ErrorImpl ei = new ErrorImpl(null, null, null);
077:
078: assertNull("didn't set path history right.", ei
079: .getPathHistory());
080: assertNull("didn't set throwable right.", ei.getThrowable());
081: assertNull("didn't set message right.", ei.getMessage());
082: }
083:
084: public void testConstructor2() {
085: String msg = "blah";
086: Throwable t = new Throwable();
087: this .phControl.activate();
088:
089: ErrorImpl ei = new ErrorImpl(msg, t, this .mockPH);
090:
091: assertEquals("didn't set path history right.", ei
092: .getPathHistory(), this .mockPH);
093: assertEquals("didn't set throwable right.", ei.getThrowable(),
094: t);
095: assertEquals("didn't set message right.", ei.getMessage(), msg);
096: }
097:
098: //-------------------------------------------------------------------------
099: // Helpers
100:
101: //-------------------------------------------------------------------------
102: // Standard JUnit declarations
103:
104: public static Test suite() {
105: TestSuite suite = new TestSuite(THIS_CLASS);
106:
107: // Test the implementation's interface conformity.
108: /*
109: suite.addTest( IxUTestI.suite(
110: new ImplementationCreator[] {
111: new ImplementationCreator() {
112: public Object createImplementedObject() {
113: // XXXXXXXXXXXXXXXXXXXXXXXX
114: }
115: },
116: } ) );
117: */
118: return suite;
119: }
120:
121: public static void main(String[] args) {
122: String[] name = { THIS_CLASS.getName() };
123:
124: // junit.textui.TestRunner.main( name );
125: // junit.swingui.TestRunner.main( name );
126:
127: junit.textui.TestRunner.main(name);
128: }
129:
130: /**
131: *
132: * @exception Exception thrown under any exceptional condition.
133: */
134: protected void tearDown() throws Exception {
135: // tear ourself down
136:
137: super.tearDown();
138: }
139: }
|