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: * @(#)TestServicelistBean.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.servicelist;
030:
031: import junit.framework.*;
032:
033: import java.io.Reader;
034: import java.io.Serializable;
035: import java.io.Writer;
036:
037: import java.util.ArrayList;
038: import java.util.Enumeration;
039:
040: /**
041: * DOCUMENT ME!
042: *
043: * @author Sun Microsystems, Inc.
044: */
045: public class TestServicelistBean extends TestCase {
046: /**
047: * Creates a new TestServicelistBean object.
048: *
049: * @param testName
050: */
051: public TestServicelistBean(java.lang.String testName) {
052: super (testName);
053: }
054:
055: /**
056: *
057: *
058: * @return NOT YET DOCUMENTED
059: */
060: public static Test suite() {
061: TestSuite suite = new TestSuite(TestServicelistBean.class);
062:
063: return suite;
064: }
065:
066: /**
067: * Test of addService method, of class
068: * com.sun.jbi.engine.sequencing.servicelist.ServicelistBean.
069: */
070: public void testAddService() {
071: // Add your test code below by replacing the default call to fail.
072: }
073:
074: /**
075: * Test of clearService method, of class
076: * com.sun.jbi.engine.sequencing.servicelist.ServicelistBean.
077: */
078: public void testClearService() {
079: // Add your test code below by replacing the default call to fail.
080: }
081:
082: /**
083: * Test of getDeploymentId method, of class
084: * com.sun.jbi.engine.sequencing.servicelist.ServicelistBean.
085: */
086: public void testGetDeploymentId() {
087: // Add your test code below by replacing the default call to fail.
088: }
089:
090: /**
091: * Test of getListdescription method, of class
092: * com.sun.jbi.engine.sequencing.servicelist.ServicelistBean.
093: */
094: public void testGetListdescription() {
095: // Add your test code below by replacing the default call to fail.
096: }
097:
098: /**
099: * Test of getOperation method, of class
100: * com.sun.jbi.engine.sequencing.servicelist.ServicelistBean.
101: */
102: public void testGetOperation() {
103: // Add your test code below by replacing the default call to fail.
104: }
105:
106: /**
107: * Test of getService method, of class
108: * com.sun.jbi.engine.sequencing.servicelist.ServicelistBean.
109: */
110: public void testGetService() {
111: // Add your test code below by replacing the default call to fail.
112: }
113:
114: /**
115: * Test of getServiceCount method, of class
116: * com.sun.jbi.engine.sequencing.servicelist.ServicelistBean.
117: */
118: public void testGetServiceCount() {
119: // Add your test code below by replacing the default call to fail.
120: }
121:
122: /**
123: * Test of getServicename method, of class
124: * com.sun.jbi.engine.sequencing.servicelist.ServicelistBean.
125: */
126: public void testGetServicename() {
127: // Add your test code below by replacing the default call to fail.
128: }
129:
130: /**
131: * Test of removeService method, of class
132: * com.sun.jbi.engine.sequencing.servicelist.ServicelistBean.
133: */
134: public void testRemoveService() {
135: // Add your test code below by replacing the default call to fail.
136: }
137:
138: /**
139: * Test of setDeploymentId method, of class
140: * com.sun.jbi.engine.sequencing.servicelist.ServicelistBean.
141: */
142: public void testSetDeploymentId() {
143: // Add your test code below by replacing the default call to fail.
144: }
145:
146: /**
147: * Test of setListdescription method, of class
148: * com.sun.jbi.engine.sequencing.servicelist.ServicelistBean.
149: */
150: public void testSetListdescription() {
151: // Add your test code below by replacing the default call to fail.
152: }
153:
154: /**
155: * Test of setOperation method, of class
156: * com.sun.jbi.engine.sequencing.servicelist.ServicelistBean.
157: */
158: public void testSetOperation() {
159: // Add your test code below by replacing the default call to fail.
160: }
161:
162: /**
163: * Test of setService method, of class
164: * com.sun.jbi.engine.sequencing.servicelist.ServicelistBean.
165: */
166: public void testSetService() {
167: // Add your test code below by replacing the default call to fail.
168: }
169:
170: /**
171: * Test of setServicename method, of class
172: * com.sun.jbi.engine.sequencing.servicelist.ServicelistBean.
173: */
174: public void testSetServicename() {
175: // Add your test code below by replacing the default call to fail.
176: }
177:
178: // Add test methods here, they have to start with 'test' name.
179: // for example:
180: // public void testHello() {}
181: }
|