[AMQ-9239] jakarta.jms - activemq-unit-tests changes

This commit is contained in:
Matt Pavlovich 2023-03-30 11:38:28 -05:00
parent e10d457868
commit 5243a4451c
3 changed files with 4 additions and 8 deletions

View File

@ -30,14 +30,12 @@ import org.apache.activemq.broker.BrokerFactory;
import org.apache.activemq.broker.BrokerService;
import org.apache.activemq.command.ActiveMQQueue;
import org.apache.activemq.command.ActiveMQTopic;
import org.junit.Ignore;
import org.objectweb.jtests.jms.admin.Admin;
/**
*
* @author <a href="http://hiramchirino.com">Hiram Chirino</a>
*/
@Ignore // AMQ-9239 joram does not support jakarta.jms
public class ActiveMQAdmin implements Admin {
Context context;

View File

@ -20,7 +20,6 @@ import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.junit.Ignore;
import org.objectweb.jtests.jms.conform.connection.ConnectionTest;
import org.objectweb.jtests.jms.conform.connection.TopicConnectionTest;
import org.objectweb.jtests.jms.conform.message.MessageBodyTest;
@ -43,7 +42,6 @@ import org.objectweb.jtests.jms.conform.topic.TemporaryTopicTest;
/**
* @author <a href="http://hiramchirino.com">Hiram Chirino</a>
*/
@Ignore // AMQ-9239 joram does not support jakarta.jms
public class JoramJmsTest extends TestCase {
static {

View File

@ -25,10 +25,10 @@ import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import javax.jms.MessageConsumer;
import javax.jms.MessageProducer;
import javax.jms.Session;
import javax.jms.TopicSubscriber;
import jakarta.jms.MessageConsumer;
import jakarta.jms.MessageProducer;
import jakarta.jms.Session;
import jakarta.jms.TopicSubscriber;
import org.apache.activemq.ActiveMQConnectionFactory;
import org.apache.activemq.broker.BrokerService;
import org.apache.activemq.broker.TransportConnector;