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: * @(#)TestSequencingEngineDeployer.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: import com.sun.jbi.engine.sequencing.servicelist.ServicelistBean;
033: import com.sun.jbi.engine.sequencing.util.ConfigData;
034: import com.sun.jbi.engine.sequencing.util.FileListing;
035:
036: import junit.framework.*;
037:
038: import java.io.File;
039: import java.io.FileOutputStream;
040: import java.io.InputStream;
041: import java.io.InputStreamReader;
042: import java.io.OutputStreamWriter;
043: import java.io.Reader;
044:
045: import java.util.HashMap;
046: import java.util.Iterator;
047: import java.util.LinkedList;
048: import java.util.Vector;
049: import java.util.jar.JarEntry;
050: import java.util.jar.JarFile;
051: import java.util.jar.JarOutputStream;
052: import java.util.logging.Logger;
053: import java.util.zip.ZipEntry;
054:
055: import javax.jbi.management.DeploymentException;
056:
057: /**
058: * DOCUMENT ME!
059: *
060: * @author Sun Microsystems, Inc.
061: */
062: public class TestSequencingEngineDeployer extends TestCase {
063: /**
064: * Creates a new TestSequencingEngineDeployer object.
065: *
066: * @param testName
067: */
068: public TestSequencingEngineDeployer(java.lang.String testName) {
069: super (testName);
070: }
071:
072: /**
073: * DOCUMENT ME!
074: *
075: * @return NOT YET DOCUMENTED
076: */
077: public static Test suite() {
078: TestSuite suite = new TestSuite(
079: TestSequencingEngineDeployer.class);
080:
081: return suite;
082: }
083:
084: /**
085: * Test of deploy method, of class
086: * com.sun.jbi.engine.sequencing.SequencingEngineDeployer.
087: */
088: public void testDeploy() {
089: // Add your test code below by replacing the default call to fail.
090: }
091:
092: /**
093: * Test of getDeploymentInfo method, of class
094: * com.sun.jbi.engine.sequencing.SequencingEngineDeployer.
095: */
096: public void testGetDeploymentInfo() {
097: // Add your test code below by replacing the default call to fail.
098: }
099:
100: /**
101: * Test of getDeployments method, of class
102: * com.sun.jbi.engine.sequencing.SequencingEngineDeployer.
103: */
104: public void testGetDeployments() {
105: // Add your test code below by replacing the default call to fail.
106: }
107:
108: /**
109: * Test of isDeployed method, of class
110: * com.sun.jbi.engine.sequencing.SequencingEngineDeployer.
111: */
112: public void testIsDeployed() {
113: // Add your test code below by replacing the default call to fail.
114: }
115:
116: /**
117: * Test of undeploy method, of class
118: * com.sun.jbi.engine.sequencing.SequencingEngineDeployer.
119: */
120: public void testUndeploy() {
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: }
|