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