001: /*
002: * @(#)TestMonitorRunnableUTest.java
003: *
004: * Copyright (C) 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.junit.v1;
028:
029: import net.sourceforge.groboutils.autodoc.v1.AutoDoc;
030: import junit.framework.Test;
031: import junit.framework.TestCase;
032: import junit.framework.TestSuite;
033:
034: import java.io.IOException;
035: import java.lang.reflect.Method;
036:
037: /**
038: * Tests the TestMonitorRunnable class.
039: *
040: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
041: * @since July 12, 2003
042: * @version $Date: 2003/07/15 16:09:25 $
043: */
044: public class TestMonitorRunnableUTest extends TestCase {
045: //-------------------------------------------------------------------------
046: // Standard JUnit Class-specific declarations
047:
048: private static final Class THIS_CLASS = TestMonitorRunnableUTest.class;
049: private static final AutoDoc DOC = new AutoDoc(THIS_CLASS);
050:
051: public TestMonitorRunnableUTest(String name) {
052: super (name);
053: }
054:
055: //-------------------------------------------------------------------------
056: // Inner classes
057:
058: private static class MyTestMonitorRunnable1 extends
059: TestMonitorRunnable {
060: Throwable t;
061:
062: public MyTestMonitorRunnable1(Throwable t) {
063: this .t = t;
064: }
065:
066: public void runMonitor() throws Throwable {
067: if (this .t != null) {
068: throw this .t;
069: }
070: }
071: }
072:
073: private static class MyTestRunnable extends TestRunnable {
074: Throwable t;
075:
076: public MyTestRunnable(Throwable t) {
077: this .t = t;
078: }
079:
080: public void runTest() throws Throwable {
081: if (this .t != null) {
082: throw this .t;
083: }
084: }
085: }
086:
087: //-------------------------------------------------------------------------
088: // Tests
089:
090: public void testRun1() {
091: DOC
092: .getLog()
093: .warn(
094: "No tests for this class by itself: it is covered "
095: + "completely by the TestRunnable and MTTR tests.");
096: }
097:
098: //-------------------------------------------------------------------------
099: // Helpers
100:
101: protected TestRunnable createTestRunnable(Throwable throwThis) {
102: return new MyTestRunnable(throwThis);
103: }
104:
105: //-------------------------------------------------------------------------
106: // Standard JUnit declarations
107:
108: public static Test suite() {
109: TestSuite suite = new TestSuite(THIS_CLASS);
110:
111: return suite;
112: }
113:
114: public static void main(String[] args) {
115: String[] name = { THIS_CLASS.getName() };
116:
117: // junit.textui.TestRunner.main( name );
118: // junit.swingui.TestRunner.main( name );
119:
120: junit.textui.TestRunner.main(name);
121: }
122:
123: /**
124: *
125: * @exception Exception thrown under any exceptional condition.
126: */
127: protected void setUp() throws Exception {
128: super .setUp();
129:
130: // set ourself up
131: }
132:
133: /**
134: *
135: * @exception Exception thrown under any exceptional condition.
136: */
137: protected void tearDown() throws Exception {
138: // tear ourself down
139:
140: super.tearDown();
141: }
142: }
|