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: * @(#)TestServiceManager.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;
030:
031: import com.sun.jbi.engine.sequencing.framework.threads.WorkManager;
032: import com.sun.jbi.engine.sequencing.servicelist.ServiceBean;
033: import com.sun.jbi.engine.sequencing.servicelist.ServicelistBean;
034: import com.sun.jbi.engine.sequencing.util.ConfigData;
035:
036: import junit.framework.*;
037:
038: import java.util.Iterator;
039: import java.util.List;
040: import java.util.Vector;
041: import java.util.logging.Logger;
042:
043: import javax.jbi.messaging.DeliveryChannel;
044: import javax.jbi.messaging.MessagingException;
045:
046: import javax.jbi.servicedesc.ServiceEndpoint;
047:
048: import javax.xml.namespace.QName;
049:
050: /**
051: * DOCUMENT ME!
052: *
053: * @author Sun Microsystems, Inc.
054: */
055: public class TestServiceManager extends TestCase {
056: /**
057: * Creates a new TestServiceManager object.
058: *
059: * @param testName
060: */
061: public TestServiceManager(java.lang.String testName) {
062: super (testName);
063: }
064:
065: /**
066: * DOCUMENT ME!
067: *
068: * @return NOT YET DOCUMENTED
069: */
070: public static Test suite() {
071: TestSuite suite = new TestSuite(TestServiceManager.class);
072:
073: return suite;
074: }
075:
076: /**
077: * Test of activateServices method, of class
078: * com.sun.jbi.engine.sequencing.ServiceManager.
079: */
080: public void testActivateServices() {
081: // Add your test code below by replacing the default call to fail.
082: }
083:
084: /**
085: * Test of getRunningServicesCount method, of class
086: * com.sun.jbi.engine.sequencing.ServiceManager.
087: */
088: public void testGetRunningServicesCount() {
089: // Add your test code below by replacing the default call to fail.
090: }
091:
092: /**
093: * Test of setChannel method, of class
094: * com.sun.jbi.engine.sequencing.ServiceManager.
095: */
096: public void testSetChannel() {
097: // Add your test code below by replacing the default call to fail.
098: }
099:
100: /**
101: * Test of startDeployment method, of class
102: * com.sun.jbi.engine.sequencing.ServiceManager.
103: */
104: public void testStartDeployment() {
105: // Add your test code below by replacing the default call to fail.
106: }
107:
108: /**
109: * Test of stopAllServices method, of class
110: * com.sun.jbi.engine.sequencing.ServiceManager.
111: */
112: public void testStopAllServices() {
113: // Add your test code below by replacing the default call to fail.
114: }
115:
116: /**
117: * Test of stopDeployment method, of class
118: * com.sun.jbi.engine.sequencing.ServiceManager.
119: */
120: public void testStopDeployment() {
121: // Add your test code below by replacing the default call to fail.
122: }
123:
124: // Add test methods here, they have to start with 'test' name.
125: // for example:
126: // public void testHello() {}
127: }
|