View Javadoc

1   /*
2    * $Id: JmsFunctionalTestSuite.java 20320 2010-11-24 15:03:31Z dfeist $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  
11  package org.mule.transport.jms.integration;
12  
13  import org.junit.runner.RunWith;
14  import org.junit.runners.Suite;
15  import org.junit.runners.Suite.SuiteClasses;
16  
17  /**
18   * A test suite for JUnit 4 consisting of all JMS functional tests which have been 
19   * parameterized in order to support more than one JMS provider.  This test suite
20   * can be run/debugged conveniently from an IDE (e.g., in Eclipse "Run As/JUnit Test").
21   */
22  @RunWith(Suite.class)
23  @SuiteClasses({JmsClientAcknowledgeTransactionTestCase.class,
24                JmsConnectorJndiTestCase.class,
25                JmsDurableTopicTestCase.class,
26                JmsExceptionStrategyTestCase.class,
27                JmsMessageAwareTransformersMule2685TestCase.class,
28                JmsMuleSideDurableTopicTestCase.class,
29                JmsMuleSideDurableTopicXATxTestCase.class,
30                JmsQueueTestCase.class,
31                JmsQueueMessageTypesTestCase.class,
32                JmsQueueWithCompressionTestCase.class,
33                JmsQueueWithTransactionTestCase.class,
34                JmsRemoteSyncMule2868TestCase.class,
35                JmsSingleTransactionAlwaysBeginConfigurationTestCase.class,
36                JmsSingleTransactionBeginOrJoinAndAlwaysBeginTestCase.class,
37                JmsSingleTransactionComponentTestCase.class,
38                JmsSingleTransactionNoneTestCase.class,
39                JmsSingleTransactionRecieveAndSendTestCase.class,
40                JmsTemporaryReplyToTestCase.class,
41                JmsTopicTestCase.class,
42                JmsTransformersTestCase.class,
43                JmsXAAlwaysBeginTestCase.class,
44                JmsXATransactionComponentTestCase.class})
45                
46  public class JmsFunctionalTestSuite
47  {
48      // empty
49  }