KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > messagedriven > test > JMSContainerInvokerMessageDrivenUnitTestCase


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.test.messagedriven.test;
8
9 import org.jboss.test.messagedriven.support.SimpleMessageDrivenUnitTest;
10
11 /**
12  * Tests of ejb 2.1 using the JMSContainerInvoker
13  *
14  * @author <a HREF="mailto:adrian@jboss.com>Adrian Brock</a>
15  * @version <tt>$Revision: 1.4</tt>
16  */

17 public class JMSContainerInvokerMessageDrivenUnitTestCase extends SimpleMessageDrivenUnitTest
18 {
19    public JMSContainerInvokerMessageDrivenUnitTestCase(String JavaDoc name)
20    {
21       super(name, testQueue, testQueueProps);
22    }
23    
24
25    public String JavaDoc getMDBDeployment()
26    {
27       return "jmscontainerinvoker.jar";
28    }
29
30 }
31
Popular Tags