summaryrefslogtreecommitdiff
path: root/qpid/java/broker
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2008-10-03 09:20:45 +0000
committerMartin Ritchie <ritchiem@apache.org>2008-10-03 09:20:45 +0000
commit575c39e8336bbc2803599414935f1ecf413c4633 (patch)
tree2a3c2905ec6456fa1066adcdfb07b008e2e146d9 /qpid/java/broker
parent88bd4b814b7d9ba395c59493d47292a1b4d15dcd (diff)
downloadqpid-python-575c39e8336bbc2803599414935f1ecf413c4633.tar.gz
QPID-1268 : Added additional deleteDirectory method that behaves like rmdir, modified delete to behave like rm. Added further tests for copy and delete. Encorporated review feedback from ASkinner.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@701329 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/broker')
-rw-r--r--qpid/java/broker/src/test/java/org/apache/qpid/server/queue/AMQQueueFactoryTest.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/qpid/java/broker/src/test/java/org/apache/qpid/server/queue/AMQQueueFactoryTest.java b/qpid/java/broker/src/test/java/org/apache/qpid/server/queue/AMQQueueFactoryTest.java
index 3e3bd700e3..84c243f24b 100644
--- a/qpid/java/broker/src/test/java/org/apache/qpid/server/queue/AMQQueueFactoryTest.java
+++ b/qpid/java/broker/src/test/java/org/apache/qpid/server/queue/AMQQueueFactoryTest.java
@@ -60,6 +60,8 @@ public class AMQQueueFactoryTest extends TestCase
{
AMQQueueFactory.createAMQQueueImpl(new AMQShortString("testQueue"), false, new AMQShortString("owner"), false,
_virtualHost, fieldTable);
+
+ //assert you get the right queue back
}
catch (AMQException e)
{
@@ -82,6 +84,7 @@ public class AMQQueueFactoryTest extends TestCase
{
AMQQueueFactory.createAMQQueueImpl(new AMQShortString("testQueue"), false, new AMQShortString("owner"), false,
virtualHost, null);
+ //assert you get the right queue back
}
catch (AMQException e)
{