diff options
| author | Robert Godfrey <rgodfrey@apache.org> | 2013-06-17 08:11:06 +0000 |
|---|---|---|
| committer | Robert Godfrey <rgodfrey@apache.org> | 2013-06-17 08:11:06 +0000 |
| commit | c4f7a811226cd0342a6fe3a3845d8aea7fad2a09 (patch) | |
| tree | 35a392f712f7e3e51d06d338896eb10a84449276 /java/common | |
| parent | 6cef1bb516f9751a52d05108e990cb8940c10940 (diff) | |
| download | qpid-python-c4f7a811226cd0342a6fe3a3845d8aea7fad2a09.tar.gz | |
Initial change to separate virtual hosts into types
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/java-broker-vhost-refactor@1493675 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/common')
| -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 ; } |
