1 /*
2 * $Id: JmsTopicTestCase.java 19191 2010-08-25 21:05:23Z tcarlson $
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.Test;
14
15 /**
16 * Message is put to topic with two subscribers
17 */
18 public class JmsTopicTestCase extends AbstractJmsFunctionalTestCase
19 {
20 protected String getConfigResources()
21 {
22 return "integration/jms-topic.xml";
23 }
24
25 @Test
26 public void testJmsTopic() throws Exception
27 {
28 // One message is sent.
29 dispatchMessage();
30 // The same message is read twice from the same JMS topic.
31 receiveMessage();
32 receiveMessage();
33 }
34
35 @Test
36 public void testMultipleSend() throws Exception
37 {
38 // One message is sent.
39 dispatchMessage();
40 dispatchMessage();
41 // The same message is read twice from the same JMS topic.
42 receiveMessage();
43 receiveMessage();
44 receiveMessage();
45 receiveMessage();
46 }
47 }