From a2995b7614a6e15af7958f78bd412ccab00589bb Mon Sep 17 00:00:00 2001 From: Timothy Bish Date: Thu, 6 Oct 2016 15:03:33 -0400 Subject: [PATCH] https://issues.apache.org/jira/browse/AMQ-6444 Fix failing tests --- .../amqp/message/JMSMappingOutboundTransformerTest.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/message/JMSMappingOutboundTransformerTest.java b/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/message/JMSMappingOutboundTransformerTest.java index f0167b7a5f..e9da2613e4 100644 --- a/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/message/JMSMappingOutboundTransformerTest.java +++ b/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/message/JMSMappingOutboundTransformerTest.java @@ -894,18 +894,24 @@ public class JMSMappingOutboundTransformerTest { case QUEUE_TYPE: mockDestination = Mockito.mock(ActiveMQQueue.class); Mockito.when(mockDestination.getQualifiedName()).thenReturn("queue://" + TEST_ADDRESS); + Mockito.when(mockDestination.isQueue()).thenReturn(true); break; case TOPIC_TYPE: mockDestination = Mockito.mock(ActiveMQTopic.class); Mockito.when(mockDestination.getQualifiedName()).thenReturn("topic://" + TEST_ADDRESS); + Mockito.when(mockDestination.isTopic()).thenReturn(true); break; case TEMP_QUEUE_TYPE: mockDestination = Mockito.mock(ActiveMQTempQueue.class); Mockito.when(mockDestination.getQualifiedName()).thenReturn("tempQueue://" + TEST_ADDRESS); + Mockito.when(mockDestination.isQueue()).thenReturn(true); + Mockito.when(mockDestination.isTemporary()).thenReturn(true); break; case TEMP_TOPIC_TYPE: mockDestination = Mockito.mock(ActiveMQTempTopic.class); Mockito.when(mockDestination.getQualifiedName()).thenReturn("tempTopic://" + TEST_ADDRESS); + Mockito.when(mockDestination.isTopic()).thenReturn(true); + Mockito.when(mockDestination.isTemporary()).thenReturn(true); break; default: throw new IllegalArgumentException("Invliad Destination Type given/");