summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/cluster_test.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2009-01-27 02:08:25 +0000
committerAlan Conway <aconway@apache.org>2009-01-27 02:08:25 +0000
commitd18e96041c280822d52a957300bc7ccc69dee069 (patch)
tree0484fc431e92e879c00c04d46048e2dce8038d5a /qpid/cpp/src/tests/cluster_test.cpp
parent3f5cb7274932376139ac088532e1af0a18517e9f (diff)
downloadqpid-python-d18e96041c280822d52a957300bc7ccc69dee069.tar.gz
Cluster rename: dump -> update, newbie -> joiner
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@737971 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/cluster_test.cpp')
-rw-r--r--qpid/cpp/src/tests/cluster_test.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/qpid/cpp/src/tests/cluster_test.cpp b/qpid/cpp/src/tests/cluster_test.cpp
index 6ca957f310..b7d28bf914 100644
--- a/qpid/cpp/src/tests/cluster_test.cpp
+++ b/qpid/cpp/src/tests/cluster_test.cpp
@@ -27,7 +27,7 @@
#include "qpid/client/FailoverListener.h"
#include "qpid/cluster/Cluster.h"
#include "qpid/cluster/Cpg.h"
-#include "qpid/cluster/DumpClient.h"
+#include "qpid/cluster/UpdateClient.h"
#include "qpid/framing/AMQBody.h"
#include "qpid/framing/Uuid.h"
#include "qpid/framing/reply_exceptions.h"
@@ -352,8 +352,8 @@ QPID_AUTO_TEST_CASE(testUnacked) {
BOOST_CHECK_EQUAL(c1.subs.get("q2", TIME_SEC).getData(), "22");
}
-QPID_AUTO_TEST_CASE_EXPECTED_FAILURES(testDumpTxState, 1) {
- // Verify that we dump transaction state correctly to new members.
+QPID_AUTO_TEST_CASE_EXPECTED_FAILURES(testUpdateTxState, 1) {
+ // Verify that we update transaction state correctly to new members.
ClusterFixture cluster(1);
Client c0(cluster[0], "c0");
@@ -386,8 +386,8 @@ QPID_AUTO_TEST_CASE_EXPECTED_FAILURES(testDumpTxState, 1) {
BOOST_CHECK_EQUAL(m.getData(), "3");
}
-QPID_AUTO_TEST_CASE(testDumpMessageBuilder) {
- // Verify that we dump a partially recieved message to a new member.
+QPID_AUTO_TEST_CASE(testUpdateMessageBuilder) {
+ // Verify that we update a partially recieved message to a new member.
ClusterFixture cluster(1);
Client c0(cluster[0], "c0");
c0.session.queueDeclare("q");
@@ -452,7 +452,7 @@ QPID_AUTO_TEST_CASE(testConnectionKnownHosts) {
BOOST_CHECK_EQUAL(kb0, kb2);
}
-QPID_AUTO_TEST_CASE(DumpConsumers) {
+QPID_AUTO_TEST_CASE(UpdateConsumers) {
ClusterFixture cluster(1, 1);
Client c0(cluster[0], "c0");