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: * @(#)TestFileBindingDeployer.java
025: * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
026: *
027: * END_HEADER - DO NOT EDIT
028: */
029: package com.sun.jbi.binding.file;
030:
031: import junit.framework.Test;
032: import junit.framework.TestCase;
033: import junit.framework.TestSuite;
034:
035: /**
036: * DOCUMENT ME!
037: *
038: * @author Sun Microsystems, Inc.
039: */
040: public class TestFileBindingDeployer extends TestCase {
041: /**
042: * Creates a new TestFileBindingDeployer object.
043: *
044: * @param testName DOCUMENT ME!
045: */
046: public TestFileBindingDeployer(java.lang.String testName) {
047: super (testName);
048: }
049:
050: /**
051: * DOCUMENT ME!
052: *
053: * @return DOCUMENT ME!
054: */
055: public static Test suite() {
056: TestSuite suite = new TestSuite(TestFileBindingDeployer.class);
057:
058: return suite;
059: }
060:
061: /**
062: * Test of deploy method, of class
063: * com.sun.jbi.binding.file.FileBindingDeployer.
064: */
065: public void testDeploy() {
066: System.out.println("testDeploy");
067: }
068:
069: /**
070: * Test of getDeploymentInfo method, of class
071: * com.sun.jbi.binding.file.FileBindingDeployer.
072: */
073: public void testGetDeploymentInfo() {
074: System.out.println("testGetDeploymentInfo");
075: }
076:
077: /**
078: * Test of getDeployments method, of class
079: * com.sun.jbi.binding.file.FileBindingDeployer.
080: */
081: public void testGetDeployments() {
082: System.out.println("testGetDeployments");
083: }
084:
085: /**
086: * Test of isDeployed method, of class
087: * com.sun.jbi.binding.file.FileBindingDeployer.
088: */
089: public void testIsDeployed() {
090: System.out.println("testIsDeployed");
091: }
092:
093: /**
094: * Test of undeploy method, of class
095: * com.sun.jbi.binding.file.FileBindingDeployer.
096: */
097: public void testUndeploy() {
098: System.out.println("testUndeploy");
099: }
100:
101: // Add test methods here, they have to start with 'test' name.
102: // for example:
103: // public void testHello() {}
104: }
|