summaryrefslogtreecommitdiff
path: root/qpid/java/broker/src/test
diff options
context:
space:
mode:
authorRobert Gemmell <robbie@apache.org>2013-03-10 22:33:03 +0000
committerRobert Gemmell <robbie@apache.org>2013-03-10 22:33:03 +0000
commit66992683e1310209c24435c8ff1d0ced0e94cd5a (patch)
treeb4d746248e0d4a73f86f72499fe1b35ca065ea30 /qpid/java/broker/src/test
parente07b736d33f260883097f258dde5f9d0efc9e69d (diff)
downloadqpid-python-66992683e1310209c24435c8ff1d0ced0e94cd5a.tar.gz
QPID-4390: misc cleanup
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1454942 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/broker/src/test')
-rw-r--r--qpid/java/broker/src/test/java/org/apache/qpid/server/configuration/BrokerConfigurationStoreCreatorTest.java17
1 files changed, 1 insertions, 16 deletions
diff --git a/qpid/java/broker/src/test/java/org/apache/qpid/server/configuration/BrokerConfigurationStoreCreatorTest.java b/qpid/java/broker/src/test/java/org/apache/qpid/server/configuration/BrokerConfigurationStoreCreatorTest.java
index fa1bd966a7..afb7559d9d 100644
--- a/qpid/java/broker/src/test/java/org/apache/qpid/server/configuration/BrokerConfigurationStoreCreatorTest.java
+++ b/qpid/java/broker/src/test/java/org/apache/qpid/server/configuration/BrokerConfigurationStoreCreatorTest.java
@@ -114,9 +114,8 @@ public class BrokerConfigurationStoreCreatorTest extends QpidTestCase
assertTrue("Unexpected children: " + childrenIds, childrenIds.isEmpty());
}
- public void testCreateDerbyStore()
+ public void testCreateStoreWithUnknownType()
{
- //TODO: Implement DERBY store
try
{
_storeCreator.createStore(_userStoreLocation.getAbsolutePath(), "derby", null, null);
@@ -127,18 +126,4 @@ public class BrokerConfigurationStoreCreatorTest extends QpidTestCase
// pass
}
}
-
- public void testCreateXmlStore() throws Exception
- {
- try
- {
- _storeCreator.createStore(_userStoreLocation.getAbsolutePath(), "xml", null, null);
- fail("Store is not yet supported");
- }
- catch(IllegalConfigurationException e)
- {
- // pass
- }
- }
-
}