summaryrefslogtreecommitdiff
path: root/cpp/src/tests/Cluster.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-08-30 17:06:44 +0000
committerAlan Conway <aconway@apache.org>2007-08-30 17:06:44 +0000
commitefa3feb65f59e10a378b9074ac2d01b540a3278c (patch)
tree5cb9c87f71b6f428365e377376280d2792481b40 /cpp/src/tests/Cluster.cpp
parentf6c5c0d464efd4a19af54cbbb68a2ae315fbfd96 (diff)
downloadqpid-python-efa3feb65f59e10a378b9074ac2d01b540a3278c.tar.gz
- Update cluster code to work with new FrameHandler
- Update ClassifierHandler to use Visitor rather than map. - Replace heap allocation in cluster classes with boost::optional. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@571246 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/Cluster.cpp')
-rw-r--r--cpp/src/tests/Cluster.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/cpp/src/tests/Cluster.cpp b/cpp/src/tests/Cluster.cpp
index b3a6a745b8..531a74b0c2 100644
--- a/cpp/src/tests/Cluster.cpp
+++ b/cpp/src/tests/Cluster.cpp
@@ -42,8 +42,8 @@ BOOST_AUTO_TEST_CASE(testClusterOne) {
BOOST_CHECK_EQUAL(1u, cluster.size());
Cluster::MemberList members = cluster.getMembers();
BOOST_CHECK_EQUAL(1u, members.size());
- shared_ptr<const Cluster::Member> me=members.front();
- BOOST_REQUIRE_EQUAL(me->url, "amqp:one:1");
+ Cluster::Member me=members.front();
+ BOOST_REQUIRE_EQUAL(me.url, "amqp:one:1");
}
/** Fork a process to test a cluster with two members */
@@ -93,18 +93,18 @@ struct CountHandler : public FrameHandler {
BOOST_AUTO_TEST_CASE(testClassifierHandlerWiring) {
AMQFrame queueDecl(0, QueueDeclareBody(VER));
AMQFrame messageTrans(0, MessageTransferBody(VER));
- shared_ptr<CountHandler> wiring(new CountHandler());
- shared_ptr<CountHandler> other(new CountHandler());
+ CountHandler wiring;
+ CountHandler other;
ClassifierHandler classify(wiring, other);
classify.handle(queueDecl);
- BOOST_CHECK_EQUAL(1u, wiring->count);
- BOOST_CHECK_EQUAL(0u, other->count);
+ BOOST_CHECK_EQUAL(1u, wiring.count);
+ BOOST_CHECK_EQUAL(0u, other.count);
classify.handle(messageTrans);
- BOOST_CHECK_EQUAL(1u, wiring->count);
- BOOST_CHECK_EQUAL(1u, other->count);
+ BOOST_CHECK_EQUAL(1u, wiring.count);
+ BOOST_CHECK_EQUAL(1u, other.count);
}