summaryrefslogtreecommitdiff
path: root/java/systests/src
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
commitceffd287d21bdcf2552e67d24c33b27ef6485a76 (patch)
treeeb317e110db86baff1872265e10908bb6c9d193d /java/systests/src
parentf3e6f80f93ac8ed7691bb5ece86b11817b66441d (diff)
downloadqpid-python-ceffd287d21bdcf2552e67d24c33b27ef6485a76.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/qpid@796798 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/systests/src')
-rw-r--r--java/systests/src/main/java/org/apache/qpid/server/configuration/ServerConfigurationFileTest.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/java/systests/src/main/java/org/apache/qpid/server/configuration/ServerConfigurationFileTest.java b/java/systests/src/main/java/org/apache/qpid/server/configuration/ServerConfigurationFileTest.java
index c25a53c4ea..d49206a650 100644
--- a/java/systests/src/main/java/org/apache/qpid/server/configuration/ServerConfigurationFileTest.java
+++ b/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);
+ }
+
}