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