summaryrefslogtreecommitdiff
path: root/qpid/java/systests
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2009-07-22 17:09:19 +0000
committerMartin Ritchie <ritchiem@apache.org>2009-07-22 17:09:19 +0000
commit24cc42d10857f671423d347aeaa5002d11c5de82 (patch)
treee03540abf7a3b24094bccb6a3874209311708a02 /qpid/java/systests
parent7185412d97631d37c6deda80c21e856d36e6d368 (diff)
downloadqpid-python-24cc42d10857f671423d347aeaa5002d11c5de82.tar.gz
QPID-1992 : Corrected duplication in ServerConfiguration for StatusUpdates and so renamed method getStatusUpdatesEnabled
Ensured tested in ServerConfiguration[File]Test and removed standalone test that replicated functionality. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@796798 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/systests')
-rw-r--r--qpid/java/systests/src/main/java/org/apache/qpid/server/configuration/ServerConfigurationFileTest.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/server/configuration/ServerConfigurationFileTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/server/configuration/ServerConfigurationFileTest.java
index c25a53c4ea..d49206a650 100644
--- a/qpid/java/systests/src/main/java/org/apache/qpid/server/configuration/ServerConfigurationFileTest.java
+++ b/qpid/java/systests/src/main/java/org/apache/qpid/server/configuration/ServerConfigurationFileTest.java
@@ -29,7 +29,6 @@ import org.apache.qpid.test.utils.QpidTestCase;
*
* All configuration values should be set in the systest config file so that
* the ability to load them can be validated.
- *
*/
public class ServerConfigurationFileTest extends QpidTestCase
{
@@ -72,4 +71,10 @@ public class ServerConfigurationFileTest extends QpidTestCase
{
validatePropertyDefinedInFile(ServerConfiguration.CONNECTOR_PROTECTIO_WRITE_BUFFER_LIMIT_SIZE);
}
+
+ public void testStatusUpdates() throws ConfigurationException
+ {
+ validatePropertyDefinedInFile(ServerConfiguration.STATUS_UPDATES);
+ }
+
}