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: * @(#)TestFileBindingLifeCycle.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 TestFileBindingLifeCycle extends TestCase {
041: /**
042: * Creates a new TestFileBindingLifeCycle object.
043: *
044: * @param testName DOCUMENT ME!
045: */
046: public TestFileBindingLifeCycle(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(TestFileBindingLifeCycle.class);
057:
058: return suite;
059: }
060:
061: /**
062: * Test of getDeploymentMBeanName method, of class
063: * com.sun.jbi.binding.file.FileBindingLifeCycle.
064: */
065: public void testGetDeploymentMBeanName() {
066: System.out.println("testGetDeploymentMBeanName");
067: }
068:
069: /**
070: * Test of getExtensionMBeanName method, of class
071: * com.sun.jbi.binding.file.FileBindingLifeCycle.
072: */
073: public void testGetExtensionMBeanName() {
074: System.out.println("testGetExtensionMBeanName");
075: }
076:
077: /**
078: * Test of init method, of class
079: * com.sun.jbi.binding.file.FileBindingLifeCycle.
080: */
081: public void testInit() {
082: System.out.println("testInit");
083: }
084:
085: /**
086: * Test of shutdown method, of class
087: * com.sun.jbi.binding.file.FileBindingLifeCycle.
088: */
089: public void testShutdown() {
090: System.out.println("testShutdown");
091: }
092:
093: /**
094: * Test of start method, of class
095: * com.sun.jbi.binding.file.FileBindingLifeCycle.
096: */
097: public void testStart() {
098: System.out.println("testStart");
099: }
100:
101: /**
102: * Test of stop method, of class
103: * com.sun.jbi.binding.file.FileBindingLifeCycle.
104: */
105: public void testStop() {
106: System.out.println("testStop");
107: }
108:
109: // Add test methods here, they have to start with 'test' name.
110: // for example:
111: // public void testHello() {}
112: }
|