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: * @(#)TestWorkManager.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.Hashtable;
034: import java.util.logging.Logger;
035:
036: /**
037: * DOCUMENT ME!
038: *
039: * @author Sun Microsystems, Inc.
040: */
041: public class TestWorkManager extends TestCase {
042: /**
043: * Creates a new TestWorkManager object.
044: *
045: * @param testName
046: */
047: public TestWorkManager(java.lang.String testName) {
048: super (testName);
049: }
050:
051: /**
052: * DOCUMENT ME!
053: *
054: * @return NOT YET DOCUMENTED
055: */
056: public static Test suite() {
057: TestSuite suite = new TestSuite(TestWorkManager.class);
058:
059: return suite;
060: }
061:
062: /**
063: * Test of cease method, of class
064: * com.sun.jbi.engine.sequencing.framework.threads.WorkManager.
065: */
066: public void testCease() {
067: // Add your test code below by replacing the default call to fail.
068: }
069:
070: /**
071: * Test of getBusyThreads method, of class
072: * com.sun.jbi.engine.sequencing.framework.threads.WorkManager.
073: */
074: public void testGetBusyThreads() {
075: // Add your test code below by replacing the default call to fail.
076: }
077:
078: /**
079: * Test of getWorkManager method, of class
080: * com.sun.jbi.engine.sequencing.framework.threads.WorkManager.
081: */
082: public void testGetWorkManager() {
083: // Add your test code below by replacing the default call to fail.
084: }
085:
086: /**
087: * Test of init method, of class
088: * com.sun.jbi.engine.sequencing.framework.threads.WorkManager.
089: */
090: public void testInit() {
091: // Add your test code below by replacing the default call to fail.
092: }
093:
094: /**
095: * Test of processCommand method, of class
096: * com.sun.jbi.engine.sequencing.framework.threads.WorkManager.
097: */
098: public void testProcessCommand() {
099: // Add your test code below by replacing the default call to fail.
100: }
101:
102: /**
103: * Test of setLogger method, of class
104: * com.sun.jbi.engine.sequencing.framework.threads.WorkManager.
105: */
106: public void testSetLogger() {
107: // Add your test code below by replacing the default call to fail.
108: }
109:
110: /**
111: * Test of setMaxThreads method, of class
112: * com.sun.jbi.engine.sequencing.framework.threads.WorkManager.
113: */
114: public void testSetMaxThreads() {
115: // Add your test code below by replacing the default call to fail.
116: }
117:
118: /**
119: * Test of setMinThreads method, of class
120: * com.sun.jbi.engine.sequencing.framework.threads.WorkManager.
121: */
122: public void testSetMinThreads() {
123: // Add your test code below by replacing the default call to fail.
124: }
125:
126: // Add test methods here, they have to start with 'test' name.
127: // for example:
128: // public void testHello() {}
129: }
|