fix broken test case

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@516038 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2007-03-08 13:28:58 +00:00
parent d7a14830c7
commit e39a679d2f
1 changed files with 12 additions and 6 deletions

View File

@ -43,7 +43,7 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
public void testPreparedTransactionRecoveredOnRestart() throws Exception { public void testPreparedTransactionRecoveredOnRestart() throws Exception {
ActiveMQDestination destination = new ActiveMQQueue("TEST"); ActiveMQDestination destination = createDestination();
// Setup the producer and send the message. // Setup the producer and send the message.
StubConnection connection = createConnection(); StubConnection connection = createConnection();
@ -111,7 +111,7 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
public void testQueuePersistentCommitedMessagesNotLostOnRestart() throws Exception { public void testQueuePersistentCommitedMessagesNotLostOnRestart() throws Exception {
ActiveMQDestination destination = new ActiveMQQueue("TEST"); ActiveMQDestination destination = createDestination();
// Setup the producer and send the message. // Setup the producer and send the message.
StubConnection connection = createConnection(); StubConnection connection = createConnection();
@ -158,7 +158,7 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
public void testQueuePersistentCommitedAcksNotLostOnRestart() throws Exception { public void testQueuePersistentCommitedAcksNotLostOnRestart() throws Exception {
ActiveMQDestination destination = new ActiveMQQueue("TEST"); ActiveMQDestination destination = createDestination();
// Setup the producer and send the message. // Setup the producer and send the message.
StubConnection connection = createConnection(); StubConnection connection = createConnection();
@ -205,13 +205,15 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
connection.send(consumerInfo); connection.send(consumerInfo);
// No messages should be delivered. // No messages should be delivered.
assertNoMessagesLeft(connection);
Message m = receiveMessage(connection); Message m = receiveMessage(connection);
assertNull(m); assertNull(m);
} }
public void testQueuePersistentUncommittedAcksLostOnRestart() throws Exception { public void testQueuePersistentUncommittedAcksLostOnRestart() throws Exception {
ActiveMQDestination destination = new ActiveMQQueue("TEST"); ActiveMQDestination destination = createDestination();
// Setup the producer and send the message. // Setup the producer and send the message.
StubConnection connection = createConnection(); StubConnection connection = createConnection();
@ -273,4 +275,8 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
junit.textui.TestRunner.run(suite()); junit.textui.TestRunner.run(suite());
} }
protected ActiveMQDestination createDestination() {
return new ActiveMQQueue(getClass().getName() + "." + getName());
}
} }