1 /*
2 * $Id: JmsSingleTransactionNoneTestCase.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 * Send and recieve JmsMessage without any tx
14 */
15 public class JmsSingleTransactionNoneTestCase extends AbstractJmsFunctionalTestCase
16 {
17 protected String getConfigResources()
18 {
19 return "providers/activemq/jms-single-tx-NONE.xml";
20 }
21
22 public void testNoneTx() throws Exception
23 {
24 send(scenarioNoTx);
25 receive(scenarioNoTx);
26 receive(scenarioNotReceive);
27 }
28 }