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: * @(#)TestSequencingEngineLifeCycle.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.ServiceBean;
032: import com.sun.jbi.engine.sequencing.servicelist.ServicelistBean;
033: import com.sun.jbi.engine.sequencing.servicelist.ServicelistReader;
034: import com.sun.jbi.engine.sequencing.servicelist.ServicelistValidator;
035: import com.sun.jbi.engine.sequencing.util.ConfigData;
036: import com.sun.jbi.engine.sequencing.util.DeployHelper;
037: import com.sun.jbi.engine.sequencing.util.FileListing;
038:
039: import junit.framework.*;
040:
041: import org.w3c.dom.Document;
042:
043: import java.io.File;
044:
045: import java.util.ArrayList;
046: import java.util.HashMap;
047: import java.util.Iterator;
048: import java.util.LinkedList;
049: import java.util.Set;
050: import java.util.logging.Logger;
051:
052: import javax.jbi.management.DeploymentException;
053: import javax.jbi.management.MBeanNames;
054: import javax.jbi.messaging.DeliveryChannel;
055:
056: import javax.management.MBeanServer;
057: import javax.management.ObjectName;
058: import javax.management.StandardMBean;
059:
060: import javax.xml.namespace.QName;
061:
062: /**
063: * DOCUMENT ME!
064: *
065: * @author Sun Microsystems, Inc.
066: */
067: public class TestSequencingEngineLifeCycle extends TestCase {
068: /**
069: * Creates a new TestSequencingEngineLifeCycle object.
070: *
071: * @param testName
072: */
073: public TestSequencingEngineLifeCycle(java.lang.String testName) {
074: super (testName);
075: }
076:
077: /**
078: * DOCUMENT ME!
079: *
080: * @return NOT YET DOCUMENTED
081: */
082: public static Test suite() {
083: TestSuite suite = new TestSuite(
084: TestSequencingEngineLifeCycle.class);
085:
086: return suite;
087: }
088:
089: /**
090: * Test of getDeploymentMBeanName method, of class
091: * com.sun.jbi.engine.sequencing.SequencingEngineLifeCycle.
092: */
093: public void testGetDeploymentMBeanName() {
094: // Add your test code below by replacing the default call to fail.
095: }
096:
097: /**
098: * Test of getExtensionMBeanName method, of class
099: * com.sun.jbi.engine.sequencing.SequencingEngineLifeCycle.
100: */
101: public void testGetExtensionMBeanName() {
102: // Add your test code below by replacing the default call to fail.
103: }
104:
105: /**
106: * Test of init method, of class
107: * com.sun.jbi.engine.sequencing.SequencingEngineLifeCycle.
108: */
109: public void testInit() {
110: // Add your test code below by replacing the default call to fail.
111: }
112:
113: /**
114: * Test of shutdown method, of class
115: * com.sun.jbi.engine.sequencing.SequencingEngineLifeCycle.
116: */
117: public void testShutdown() {
118: // Add your test code below by replacing the default call to fail.
119: }
120:
121: /**
122: * Test of start method, of class
123: * com.sun.jbi.engine.sequencing.SequencingEngineLifeCycle.
124: */
125: public void testStart() {
126: // Add your test code below by replacing the default call to fail.
127: }
128:
129: /**
130: * Test of stop method, of class
131: * com.sun.jbi.engine.sequencing.SequencingEngineLifeCycle.
132: */
133: public void testStop() {
134: // Add your test code below by replacing the default call to fail.
135: }
136:
137: // Add test methods here, they have to start with 'test' name.
138: // for example:
139: // public void testHello() {}
140: }
|