KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > servicemix > jbi > management > task > JbiTaskSupport


1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */

17 package org.apache.servicemix.jbi.management.task;
18
19 import org.apache.servicemix.jbi.container.JBIContainer;
20 import org.apache.servicemix.jbi.framework.AdminCommandsServiceMBean;
21 import org.apache.servicemix.jbi.management.task.JbiTask;
22
23 import junit.framework.TestCase;
24
25
26 /**
27  *
28  * JbiTaskTest
29  * @version $Revision: 440192 $
30  */

31 public abstract class JbiTaskSupport extends TestCase {
32     protected JBIContainer container = new JBIContainer();
33     JbiTask remoteConnection;
34     /*
35      * @see TestCase#setUp()
36      */

37     protected void setUp() throws Exception JavaDoc {
38         super.setUp();
39         container.setCreateMBeanServer(true);
40         container.setMonitorDeploymentDirectory(false);
41         container.setMonitorInstallationDirectory(false);
42         container.init();
43         container.start();
44         
45         remoteConnection = new JbiTask(){
46             protected void doExecute(AdminCommandsServiceMBean acs) throws Exception JavaDoc {
47             }
48             
49         };
50         remoteConnection.init();
51     }
52
53     /*
54      * @see TestCase#tearDown()
55      */

56     protected void tearDown() throws Exception JavaDoc {
57         super.tearDown();
58         remoteConnection.close();
59         container.shutDown();
60     }
61
62     
63 }
64
Popular Tags