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: * @(#)TestService.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 com.sun.jbi.engine.sequencing.servicelist.ServiceBean;
032:
033: import junit.framework.*;
034:
035: import java.util.HashMap;
036:
037: import javax.jbi.messaging.NormalizedMessage;
038:
039: /**
040: * DOCUMENT ME!
041: *
042: * @author Sun Microsystems, Inc.
043: */
044: public class TestService extends TestCase {
045: /**
046: * Creates a new TestService object.
047: *
048: * @param testName
049: */
050: public TestService(java.lang.String testName) {
051: super (testName);
052: }
053:
054: /**
055: * DOCUMENT ME!
056: *
057: * @return NOT YET DOCUMENTED
058: */
059: public static Test suite() {
060: TestSuite suite = new TestSuite(TestService.class);
061:
062: return suite;
063: }
064:
065: /**
066: * Test of execute method, of class
067: * com.sun.jbi.engine.sequencing.servicelist.Service.
068: */
069: public void testExecute() {
070: // Add your test code below by replacing the default call to fail.
071: }
072:
073: /**
074: * Test of getAttribute method, of class
075: * com.sun.jbi.engine.sequencing.servicelist.Service.
076: */
077: public void testGetAttribute() {
078: // Add your test code below by replacing the default call to fail.
079: }
080:
081: /**
082: * Test of getOutputMessage method, of class
083: * com.sun.jbi.engine.sequencing.servicelist.Service.
084: */
085: public void testGetOutputMessage() {
086: // Add your test code below by replacing the default call to fail.
087: }
088:
089: /**
090: * Test of getService method, of class
091: * com.sun.jbi.engine.sequencing.servicelist.Service.
092: */
093: public void testGetService() {
094: // Add your test code below by replacing the default call to fail.
095: }
096:
097: /**
098: * Test of getServiceName method, of class
099: * com.sun.jbi.engine.sequencing.servicelist.Service.
100: */
101: public void testGetServiceName() {
102: // Add your test code below by replacing the default call to fail.
103: }
104:
105: /**
106: * Test of getServiceType method, of class
107: * com.sun.jbi.engine.sequencing.servicelist.Service.
108: */
109: public void testGetServiceType() {
110: // Add your test code below by replacing the default call to fail.
111: }
112:
113: /**
114: * Test of getState method, of class
115: * com.sun.jbi.engine.sequencing.servicelist.Service.
116: */
117: public void testGetState() {
118: // Add your test code below by replacing the default call to fail.
119: }
120:
121: /**
122: * Test of setAttribute method, of class
123: * com.sun.jbi.engine.sequencing.servicelist.Service.
124: */
125: public void testSetAttribute() {
126: // Add your test code below by replacing the default call to fail.
127: }
128:
129: /**
130: * Test of setInputMessage method, of class
131: * com.sun.jbi.engine.sequencing.servicelist.Service.
132: */
133: public void testSetInputMessage() {
134: // Add your test code below by replacing the default call to fail.
135: }
136:
137: /**
138: * Test of setService method, of class
139: * com.sun.jbi.engine.sequencing.servicelist.Service.
140: */
141: public void testSetService() {
142: // Add your test code below by replacing the default call to fail.
143: }
144:
145: /**
146: * Test of setServiceType method, of class
147: * com.sun.jbi.engine.sequencing.servicelist.Service.
148: */
149: public void testSetServiceType() {
150: // Add your test code below by replacing the default call to fail.
151: }
152:
153: /**
154: * Test of terminate method, of class
155: * com.sun.jbi.engine.sequencing.servicelist.Service.
156: */
157: public void testTerminate() {
158: // Add your test code below by replacing the default call to fail.
159: }
160:
161: // Add test methods here, they have to start with 'test' name.
162: // for example:
163: // public void testHello() {}
164: }
|