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: * @(#)TestServiceList.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.servicelist;
030:
031: import com.sun.jbi.engine.sequencing.MessageProcessor;
032: import com.sun.jbi.engine.sequencing.exception.ServicelistException;
033: import com.sun.jbi.engine.sequencing.framework.threads.Command;
034: import com.sun.jbi.engine.sequencing.servicelist.ServiceBean;
035: import com.sun.jbi.engine.sequencing.servicelist.ServicelistBean;
036: import com.sun.jbi.engine.sequencing.servicelist.ServicelistReader;
037:
038: import junit.framework.*;
039:
040: import java.util.Timer;
041: import java.util.TimerTask;
042: import java.util.logging.Logger;
043:
044: import javax.jbi.messaging.DeliveryChannel;
045: import javax.jbi.messaging.MessageExchange;
046:
047: /**
048: * DOCUMENT ME!
049: *
050: * @author Sun Microsystems, Inc.
051: */
052: public class TestServiceList extends TestCase {
053: /**
054: * Creates a new TestServiceList object.
055: *
056: * @param testName
057: */
058: public TestServiceList(java.lang.String testName) {
059: super (testName);
060: }
061:
062: /**
063: * DOCUMENT ME!
064: *
065: * @return NOT YET DOCUMENTED
066: */
067: public static Test suite() {
068: TestSuite suite = new TestSuite(TestServiceList.class);
069:
070: return suite;
071: }
072:
073: /**
074: * Test of cancelExchange method, of class
075: * com.sun.jbi.engine.sequencing.servicelist.ServiceList.
076: */
077: public void testCancelExchange() {
078: // Add your test code below by replacing the default call to fail.
079: }
080:
081: /**
082: * Test of execute method, of class
083: * com.sun.jbi.engine.sequencing.servicelist.ServiceList.
084: */
085: public void testExecute() {
086: // Add your test code below by replacing the default call to fail.
087: }
088:
089: /**
090: * Test of getCurrentService method, of class
091: * com.sun.jbi.engine.sequencing.servicelist.ServiceList.
092: */
093: public void testGetCurrentService() {
094: // Add your test code below by replacing the default call to fail.
095: }
096:
097: /**
098: * Test of getDeploymentId method, of class
099: * com.sun.jbi.engine.sequencing.servicelist.ServiceList.
100: */
101: public void testGetDeploymentId() {
102: // Add your test code below by replacing the default call to fail.
103: }
104:
105: /**
106: * Test of getListName method, of class
107: * com.sun.jbi.engine.sequencing.servicelist.ServiceList.
108: */
109: public void testGetListName() {
110: // Add your test code below by replacing the default call to fail.
111: }
112:
113: /**
114: * Test of getServiceListBean method, of class
115: * com.sun.jbi.engine.sequencing.servicelist.ServiceList.
116: */
117: public void testGetServiceListBean() {
118: // Add your test code below by replacing the default call to fail.
119: }
120:
121: /**
122: * Test of getState method, of class
123: * com.sun.jbi.engine.sequencing.servicelist.ServiceList.
124: */
125: public void testGetState() {
126: // Add your test code below by replacing the default call to fail.
127: }
128:
129: /**
130: * Test of setChannel method, of class
131: * com.sun.jbi.engine.sequencing.servicelist.ServiceList.
132: */
133: public void testSetChannel() {
134: // Add your test code below by replacing the default call to fail.
135: }
136:
137: /**
138: * Test of setCurrentService method, of class
139: * com.sun.jbi.engine.sequencing.servicelist.ServiceList.
140: */
141: public void testSetCurrentService() {
142: // Add your test code below by replacing the default call to fail.
143: }
144:
145: /**
146: * Test of setDeploymentId method, of class
147: * com.sun.jbi.engine.sequencing.servicelist.ServiceList.
148: */
149: public void testSetDeploymentId() {
150: // Add your test code below by replacing the default call to fail.
151: }
152:
153: /**
154: * Test of setMessageExchange method, of class
155: * com.sun.jbi.engine.sequencing.servicelist.ServiceList.
156: */
157: public void testSetMessageExchange() {
158: // Add your test code below by replacing the default call to fail.
159: }
160:
161: /**
162: * Test of setServiceListBean method, of class
163: * com.sun.jbi.engine.sequencing.servicelist.ServiceList.
164: */
165: public void testSetServiceListBean() {
166: // Add your test code below by replacing the default call to fail.
167: }
168:
169: /**
170: * Test of terminate method, of class
171: * com.sun.jbi.engine.sequencing.servicelist.ServiceList.
172: */
173: public void testTerminate() {
174: // Add your test code below by replacing the default call to fail.
175: }
176:
177: // Add test methods here, they have to start with 'test' name.
178: // for example:
179: // public void testHello() {}
180: }
|