001: /*
002: * BEGIN_HEADER - DO NOT EDIT
003: *
004: * The contents of this file are subject to the terms
005: * of the Common Development and Distribution License
006: * (the "License"). You may not use this file except
007: * in compliance with the License.
008: *
009: * You can obtain a copy of the license at
010: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
011: * See the License for the specific language governing
012: * permissions and limitations under the License.
013: *
014: * When distributing Covered Code, include this CDDL
015: * HEADER in each file and include the License file at
016: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
017: * If applicable add the following below this CDDL HEADER,
018: * with the fields enclosed by brackets "[]" replaced with
019: * your own identifying information: Portions Copyright
020: * [year] [name of copyright owner]
021: */
022:
023: /*
024: * @(#)TestWorkThread.java
025: * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
026: *
027: * END_HEADER - DO NOT EDIT
028: */
029: package com.sun.jbi.engine.sequencing.framework.threads;
030:
031: import junit.framework.*;
032:
033: import java.util.logging.Logger;
034:
035: /**
036: * DOCUMENT ME!
037: *
038: * @author Sun Microsystems, Inc.
039: */
040: public class TestWorkThread extends TestCase {
041: /**
042: * Creates a new TestWorkThread object.
043: *
044: * @param testName
045: */
046: public TestWorkThread(java.lang.String testName) {
047: super (testName);
048: }
049:
050: /**
051: * DOCUMENT ME!
052: *
053: * @return NOT YET DOCUMENTED
054: */
055: public static Test suite() {
056: TestSuite suite = new TestSuite(TestWorkThread.class);
057:
058: return suite;
059: }
060:
061: /**
062: * Test of cease method, of class
063: * com.sun.jbi.engine.sequencing.framework.threads.WorkThread.
064: */
065: public void testCease() {
066: // Add your test code below by replacing the default call to fail.
067: }
068:
069: /**
070: * Test of clearCommand method, of class
071: * com.sun.jbi.engine.sequencing.framework.threads.WorkThread.
072: */
073: public void testClearCommand() {
074: // Add your test code below by replacing the default call to fail.
075: }
076:
077: /**
078: * Test of doWork method, of class
079: * com.sun.jbi.engine.sequencing.framework.threads.WorkThread.
080: */
081: public void testDoWork() {
082: // Add your test code below by replacing the default call to fail.
083: }
084:
085: /**
086: * Test of getCommand method, of class
087: * com.sun.jbi.engine.sequencing.framework.threads.WorkThread.
088: */
089: public void testGetCommand() {
090: // Add your test code below by replacing the default call to fail.
091: }
092:
093: /**
094: * Test of isWorkAssigned method, of class
095: * com.sun.jbi.engine.sequencing.framework.threads.WorkThread.
096: */
097: public void testIsWorkAssigned() {
098: // Add your test code below by replacing the default call to fail.
099: }
100:
101: /**
102: * Test of processCommand method, of class
103: * com.sun.jbi.engine.sequencing.framework.threads.WorkThread.
104: */
105: public void testProcessCommand() {
106: // Add your test code below by replacing the default call to fail.
107: }
108:
109: /**
110: * Test of setCommand method, of class
111: * com.sun.jbi.engine.sequencing.framework.threads.WorkThread.
112: */
113: public void testSetCommand() {
114: // Add your test code below by replacing the default call to fail.
115: }
116:
117: /**
118: * Test of setLogger method, of class
119: * com.sun.jbi.engine.sequencing.framework.threads.WorkThread.
120: */
121: public void testSetLogger() {
122: // Add your test code below by replacing the default call to fail.
123: }
124:
125: /**
126: * Test of setSleepTime method, of class
127: * com.sun.jbi.engine.sequencing.framework.threads.WorkThread.
128: */
129: public void testSetSleepTime() {
130: // Add your test code below by replacing the default call to fail.
131: }
132:
133: /**
134: * Test of setState method, of class
135: * com.sun.jbi.engine.sequencing.framework.threads.WorkThread.
136: */
137: public void testSetState() {
138: // Add your test code below by replacing the default call to fail.
139: }
140:
141: // Add test methods here, they have to start with 'test' name.
142: // for example:
143: // public void testHello() {}
144: }
|