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: * @(#)TestDeploymentRegistry.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.servicelist.ServicelistBean;
032:
033: import junit.framework.*;
034:
035: import java.util.HashMap;
036: import java.util.Iterator;
037: import java.util.LinkedList;
038: import java.util.List;
039: import java.util.Set;
040: import java.util.logging.Logger;
041:
042: import javax.xml.namespace.QName;
043:
044: /**
045: * DOCUMENT ME!
046: *
047: * @author Sun Microsystems, Inc.
048: */
049: public class TestDeploymentRegistry extends TestCase {
050: /**
051: *
052: */
053: private DeploymentRegistry mRegistry;
054:
055: /**
056: *
057: */
058: private ServicelistBean mListBean;
059:
060: /**
061: * Creates a new TestDeploymentRegistry object.
062: *
063: * @param testName
064: */
065: public TestDeploymentRegistry(java.lang.String testName) {
066: super (testName);
067: }
068:
069: /**
070: * DOCUMENT ME!
071: *
072: * @return NOT YET DOCUMENTED
073: */
074: public static Test suite() {
075: TestSuite suite = new TestSuite(TestDeploymentRegistry.class);
076:
077: return suite;
078: }
079:
080: /**
081: * Sets up tests.
082: */
083: public void setUp() {
084: mRegistry = DeploymentRegistry.getInstance();
085: mListBean = new ServicelistBean();
086: }
087:
088: /**
089: * Test of clearRegistry method, of class
090: * com.sun.jbi.engine.sequencing.DeploymentRegistry.
091: */
092: public void testClearRegistry() {
093: // Add your test code below by replacing the default call to fail.
094: }
095:
096: /**
097: * Test of deregisterService method, of class
098: * com.sun.jbi.engine.sequencing.DeploymentRegistry.
099: */
100: public void testDeregisterService() {
101: // Add your test code below by replacing the default call to fail.
102: }
103:
104: /**
105: * Test of findService method, of class
106: * com.sun.jbi.engine.sequencing.DeploymentRegistry.
107: */
108: public void testFindService() {
109: // Add your test code below by replacing the default call to fail.
110: }
111:
112: /**
113: * Test of getDeploymentStatus method, of class
114: * com.sun.jbi.engine.sequencing.DeploymentRegistry.
115: */
116: public void testGetDeploymentStatus() {
117: // Add your test code below by replacing the default call to fail.
118: }
119:
120: /**
121: * Test of getInstance method, of class
122: * com.sun.jbi.engine.sequencing.DeploymentRegistry.
123: */
124: public void testGetInstance() {
125: // Add your test code below by replacing the default call to fail.
126: }
127:
128: /**
129: * Test of getService method, of class
130: * com.sun.jbi.engine.sequencing.DeploymentRegistry.
131: */
132: public void testGetService() {
133: // Add your test code below by replacing the default call to fail.
134: }
135:
136: /**
137: * Test of isDeployed method, of class
138: * com.sun.jbi.engine.sequencing.DeploymentRegistry.
139: */
140: public void testIsDeployed() {
141: // Add your test code below by replacing the default call to fail.
142: }
143:
144: /**
145: * Test of isStarted method, of class
146: * com.sun.jbi.engine.sequencing.DeploymentRegistry.
147: */
148: public void testIsStarted() {
149: // Add your test code below by replacing the default call to fail.
150: }
151:
152: /**
153: * Test of listAllServices method, of class
154: * com.sun.jbi.engine.sequencing.DeploymentRegistry.
155: */
156: public void testListAllServices() {
157: // Add your test code below by replacing the default call to fail.
158: }
159:
160: /**
161: * Test of registerService method, of class
162: * com.sun.jbi.engine.sequencing.DeploymentRegistry.
163: */
164: public void testRegisterService() {
165: // Add your test code below by replacing the default call to fail.
166: }
167:
168: /**
169: * Test of start method, of class
170: * com.sun.jbi.engine.sequencing.DeploymentRegistry.
171: */
172: public void testStart() {
173: // Add your test code below by replacing the default call to fail.
174: }
175:
176: /**
177: * Test of stop method, of class
178: * com.sun.jbi.engine.sequencing.DeploymentRegistry.
179: */
180: public void testStop() {
181: // Add your test code below by replacing the default call to fail.
182: }
183:
184: // Add test methods here, they have to start with 'test' name.
185: // for example:
186: // public void testHello() {}
187: }
|