1   /*
2    * $Id: JmsTopicTestCase.java 9392 2007-10-26 11:05:57Z akuzmin $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.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  package org.mule.test.integration.providers.jms.functional;
11  
12  /**
13   * Message is put to topic with two subscribers
14   */
15  public class JmsTopicTestCase extends AbstractJmsFunctionalTestCase
16  {
17  
18      public void testJmsTopic() throws Exception
19      {
20          dispatchMessage();
21          recieveMessage();
22          recieveMessage();
23  
24      }
25  
26      protected String getConfigResources()
27      {
28          return "providers/activemq/jms-topic.xml";
29      }
30  }