Remove this test, it is now covered by the offline tests in the client lib JmsTopicConnectionTest and JmsQueueConnectionTest
Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/6217cb29 Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/6217cb29 Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/6217cb29 Branch: refs/heads/master Commit: 6217cb29ac0a9c98c9b90774f388baea3f5f39f7 Parents: 97503ca Author: Timothy Bish <[email protected]> Authored: Tue Jan 13 17:04:45 2015 -0500 Committer: Timothy Bish <[email protected]> Committed: Tue Jan 13 17:04:45 2015 -0500 ---------------------------------------------------------------------- .../qpid/jms/joram/JoramUnifiedSessionTest.java | 56 -------------------- 1 file changed, 56 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/6217cb29/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/joram/JoramUnifiedSessionTest.java ---------------------------------------------------------------------- diff --git a/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/joram/JoramUnifiedSessionTest.java b/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/joram/JoramUnifiedSessionTest.java deleted file mode 100644 index c06e2a4..0000000 --- a/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/joram/JoramUnifiedSessionTest.java +++ /dev/null @@ -1,56 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.apache.qpid.jms.joram; - -import junit.framework.Test; -import junit.framework.TestSuite; - -import org.junit.After; -import org.junit.Before; -import org.objectweb.jtests.jms.conform.session.UnifiedSessionTest; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -/** - * Runs the Joram UnifiedSessionTest - */ -public class JoramUnifiedSessionTest extends UnifiedSessionTest { - - private final Logger LOG = LoggerFactory.getLogger(getClass()); - - public JoramUnifiedSessionTest(String name) { - super(name); - } - - @Before - @Override - public void setUp() throws Exception { - LOG.info("========== Starting test: " + getName() + " =========="); - super.setUp(); - } - - @After - @Override - public void tearDown() throws Exception { - LOG.info("========== Finsished test: " + getName() + " =========="); - super.tearDown(); - } - - public static Test suite() { - return new TestSuite(JoramUnifiedSessionTest.class); - } -} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
