diff options
Diffstat (limited to 'java/common/src')
-rw-r--r-- | java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java b/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java index 08f7387b75..8f556ece5a 100644 --- a/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java +++ b/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java @@ -1,5 +1,5 @@ /* - * + * * 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 @@ -7,16 +7,16 @@ * 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.test.utils; @@ -110,10 +110,12 @@ public class QpidTestCase extends TestCase } protected static final String MESSAGE_STORE_CLASS_NAME_KEY = "messagestore.class.name"; + protected static final String CONFIGURATION_STORE_CLASS_NAME_KEY = "configurationstore.class.name"; + protected static final String MEMORY_STORE_CLASS_NAME = "org.apache.qpid.server.store.MemoryMessageStore"; private static List<String> _exclusionList; - + public QpidTestCase() { super(); @@ -138,7 +140,7 @@ public class QpidTestCase extends TestCase { final String storeClass = System.getProperty(MESSAGE_STORE_CLASS_NAME_KEY); _logger.debug("MESSAGE_STORE_CLASS_NAME_KEY " + storeClass); - + return storeClass != null ? storeClass : MEMORY_STORE_CLASS_NAME ; } |