| SimpleQueueMessageDrivenUnitTestCase.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.messagedriven.test;
import org.jboss.test.messagedriven.support.SimpleMessageDrivenUnitTest;
/**
* Basic tests of message driven beans
*
* @author <a href="mailto:adrian@jboss.com>Adrian Brock</a>
* @version <tt>$Revision: 1.4</tt>
*/
public class SimpleQueueMessageDrivenUnitTestCase extends SimpleMessageDrivenUnitTest
{
public SimpleQueueMessageDrivenUnitTestCase(String name)
{
super(name, testQueue, testQueueProps);
}
}
| SimpleQueueMessageDrivenUnitTestCase.java |