summaryrefslogtreecommitdiff
path: root/java/client/src/test/java/org/apache/qpid/basic/ReceiveTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/client/src/test/java/org/apache/qpid/basic/ReceiveTest.java')
-rw-r--r--java/client/src/test/java/org/apache/qpid/basic/ReceiveTest.java80
1 files changed, 0 insertions, 80 deletions
diff --git a/java/client/src/test/java/org/apache/qpid/basic/ReceiveTest.java b/java/client/src/test/java/org/apache/qpid/basic/ReceiveTest.java
deleted file mode 100644
index d72d748935..0000000000
--- a/java/client/src/test/java/org/apache/qpid/basic/ReceiveTest.java
+++ /dev/null
@@ -1,80 +0,0 @@
-/*
- *
- * Copyright (c) 2006 The Apache Software Foundation
- *
- * Licensed 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.basic;
-
-import junit.framework.JUnit4TestAdapter;
-import org.apache.qpid.client.AMQConnection;
-import org.apache.qpid.client.AMQDestination;
-import org.apache.qpid.client.AMQQueue;
-import org.apache.qpid.client.AMQSession;
-
-import org.junit.Before;
-import org.junit.Test;
-
-import javax.jms.MessageConsumer;
-
-public class ReceiveTest
-{
- private AMQConnection _connection;
- private AMQDestination _destination;
- private AMQSession _session;
- private MessageConsumer _consumer;
-
- public String _connectionString = "vm://:1";
-
- @Before
- public void init() throws Exception
- {
- String broker = _connectionString;
- init(new AMQConnection(broker, "guest", "guest", "ReceiveTestClient", "/test_path"));
- }
-
- private void init(AMQConnection connection) throws Exception
- {
- init(connection, new AMQQueue("ReceiveTest", true));
- }
-
- private void init(AMQConnection connection, AMQDestination destination) throws Exception
- {
- _connection = connection;
- _destination = destination;
- _session = (AMQSession) connection.createSession(true, AMQSession.NO_ACKNOWLEDGE);
- _consumer = _session.createConsumer(_destination);
- _connection.start();
- }
-
- @Test
- public void test() throws Exception
- {
- _consumer.receive(5000);
- _connection.close();
- }
-
- public static void main(String[] argv) throws Exception
- {
- ReceiveTest test = new ReceiveTest();
- test._connectionString = argv.length == 0 ? "vm://:1" : argv[0];
- test.init();
- test.test();
- }
-
- public static junit.framework.Test suite()
- {
- return new JUnit4TestAdapter(ReceiveTest.class);
- }
-}