summaryrefslogtreecommitdiff
path: root/qpid/java/systests
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2010-07-02 16:26:44 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2010-07-02 16:26:44 +0000
commitedf2a3459b0977ee42936ebb452f4a984674dd9c (patch)
treef568507b462aa40bd9fd15b653f7b61767488cc5 /qpid/java/systests
parent809ec3077dbe82d0b77f46c9a7c6ec90ce0cb555 (diff)
downloadqpid-python-edf2a3459b0977ee42936ebb452f4a984674dd9c.tar.gz
Excluded the test from the Java test profiles and remove the unnessecery profile check from the code.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@960048 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/systests')
-rw-r--r--qpid/java/systests/src/main/java/org/apache/qpid/test/client/destination/AddressBasedDestinationTest.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/destination/AddressBasedDestinationTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/destination/AddressBasedDestinationTest.java
index d9754def3a..48fed0f0f7 100644
--- a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/destination/AddressBasedDestinationTest.java
+++ b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/destination/AddressBasedDestinationTest.java
@@ -68,12 +68,6 @@ public class AddressBasedDestinationTest extends QpidBrokerTestCase
public void testCreateOptions() throws Exception
{
- if (!isCppBroker())
- {
- _logger.info("Not C++ broker, exiting test");
- return;
- }
-
Session jmsSession = _connection.createSession(false,Session.AUTO_ACKNOWLEDGE);
MessageProducer prod;
MessageConsumer cons;
@@ -197,11 +191,6 @@ public class AddressBasedDestinationTest extends QpidBrokerTestCase
public void testCreateQueue() throws Exception
{
- if (!isCppBroker())
- {
- _logger.info("Not C++ broker, exiting test");
- return;
- }
Session jmsSession = _connection.createSession(false,Session.AUTO_ACKNOWLEDGE);
String addr = "ADDR:my-queue/hello; " +
@@ -258,11 +247,6 @@ public class AddressBasedDestinationTest extends QpidBrokerTestCase
public void testCreateExchange() throws Exception
{
- if (!isCppBroker())
- {
- _logger.info("Not C++ broker, exiting test");
- return;
- }
Session jmsSession = _connection.createSession(false,Session.AUTO_ACKNOWLEDGE);
String addr = "ADDR:my-exchange/hello; " +
@@ -295,12 +279,6 @@ public class AddressBasedDestinationTest extends QpidBrokerTestCase
public void testBindQueueWithArgs() throws Exception
{
- if (!isCppBroker())
- {
- _logger.info("Not C++ broker, exiting test");
- return;
- }
-
Session jmsSession = _connection.createSession(false,Session.AUTO_ACKNOWLEDGE);
String headersBinding = "{exchange: 'amq.match', arguments: {x-match: any, dep: sales, loc: CA}}";