Updated Branches: refs/heads/trunk d8c2eda6e -> 99d533c06
Add timouts to tests that currently lack them. Project: http://git-wip-us.apache.org/repos/asf/activemq/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/99d533c0 Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/99d533c0 Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/99d533c0 Branch: refs/heads/trunk Commit: 99d533c060f771633369ea3b6247a48438a5e667 Parents: d8c2eda Author: Timothy Bish <[email protected]> Authored: Tue Feb 11 13:53:17 2014 -0500 Committer: Timothy Bish <[email protected]> Committed: Tue Feb 11 13:53:17 2014 -0500 ---------------------------------------------------------------------- .../org/apache/activemq/transport/amqp/JMSClientTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq/blob/99d533c0/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/JMSClientTest.java ---------------------------------------------------------------------- diff --git a/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/JMSClientTest.java b/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/JMSClientTest.java index 5d16ffc..cb18f73 100644 --- a/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/JMSClientTest.java +++ b/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/JMSClientTest.java @@ -65,7 +65,7 @@ public class JMSClientTest extends AmqpTestSupport { } @SuppressWarnings("rawtypes") - @Test + @Test(timeout=30000) public void testProducerConsume() throws Exception { ActiveMQAdmin.enableJMSFrameTracing(); @@ -125,7 +125,7 @@ public class JMSClientTest extends AmqpTestSupport { connection.close(); } - @Test + @Test(timeout=30000) public void testRollbackRececeivedMessage() throws Exception { ActiveMQAdmin.enableJMSFrameTracing(); @@ -169,7 +169,7 @@ public class JMSClientTest extends AmqpTestSupport { connection.close(); } - @Test + @Test(timeout=30000) public void testTXConsumerAndLargeNumberOfMessages() throws Exception { ActiveMQAdmin.enableJMSFrameTracing(); @@ -209,7 +209,7 @@ public class JMSClientTest extends AmqpTestSupport { } @SuppressWarnings("rawtypes") - @Test + @Test(timeout=30000) public void testSelectors() throws Exception{ ActiveMQAdmin.enableJMSFrameTracing();
