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: * @(#)TestMessageRegistry.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.Servicelist;
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 TestMessageRegistry extends TestCase {
050: /**
051: * Creates a new TestMessageRegistry object.
052: *
053: * @param testName
054: */
055: public TestMessageRegistry(java.lang.String testName) {
056: super (testName);
057: }
058:
059: /**
060: * DOCUMENT ME!
061: *
062: * @return NOT YET DOCUMENTED
063: */
064: public static Test suite() {
065: TestSuite suite = new TestSuite(TestMessageRegistry.class);
066:
067: return suite;
068: }
069:
070: /**
071: * Test of clearRegistry method, of class
072: * com.sun.jbi.engine.sequencing.MessageRegistry.
073: */
074: public void testClearRegistry() {
075: // Add your test code below by replacing the default call to fail.
076: }
077:
078: /**
079: * Test of deregisterExchange method, of class
080: * com.sun.jbi.engine.sequencing.MessageRegistry.
081: */
082: public void testDeregisterExchange() {
083: // Add your test code below by replacing the default call to fail.
084: }
085:
086: /**
087: * Test of getInstance method, of class
088: * com.sun.jbi.engine.sequencing.MessageRegistry.
089: */
090: public void testGetInstance() {
091: // Add your test code below by replacing the default call to fail.
092: }
093:
094: /**
095: * Test of getServicelist method, of class
096: * com.sun.jbi.engine.sequencing.MessageRegistry.
097: */
098: public void testGetServicelist() {
099: // Add your test code below by replacing the default call to fail.
100: }
101:
102: /**
103: * Test of listActiveExchanges method, of class
104: * com.sun.jbi.engine.sequencing.MessageRegistry.
105: */
106: public void testListActiveExchanges() {
107: // Add your test code below by replacing the default call to fail.
108: }
109:
110: /**
111: * Test of registerService method, of class
112: * com.sun.jbi.engine.sequencing.MessageRegistry.
113: */
114: public void testRegisterService() {
115: // Add your test code below by replacing the default call to fail.
116: }
117:
118: // Add test methods here, they have to start with 'test' name.
119: // for example:
120: // public void testHello() {}
121: }
|