summaryrefslogtreecommitdiff
path: root/cpp/tests/TxPublishTest.cpp
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2006-12-06 17:51:42 +0000
committerGordon Sim <gsim@apache.org>2006-12-06 17:51:42 +0000
commitf2d0f0cfbfebb082e92f28b8d1b2987a0f20acf6 (patch)
treed71e0a7854dcfbef75040ee426b53f6369e0cc7a /cpp/tests/TxPublishTest.cpp
parentf8c692d37104a95ad245402ffe0d7d6b7c4ea816 (diff)
downloadqpid-python-f2d0f0cfbfebb082e92f28b8d1b2987a0f20acf6.tar.gz
Allow non-durable messages to be lazy-loaded. Cleanup of lazy-loaded messages
that are never enqueued. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@483165 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/tests/TxPublishTest.cpp')
-rw-r--r--cpp/tests/TxPublishTest.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/tests/TxPublishTest.cpp b/cpp/tests/TxPublishTest.cpp
index 6324e5fb01..d33d84ec6e 100644
--- a/cpp/tests/TxPublishTest.cpp
+++ b/cpp/tests/TxPublishTest.cpp
@@ -38,11 +38,11 @@ class TxPublishTest : public CppUnit::TestCase
class TestMessageStore : public NullMessageStore
{
public:
- vector< pair<string, Message::shared_ptr> > enqueued;
+ vector< pair<string, Message*> > enqueued;
- void enqueue(TransactionContext*, Message::shared_ptr& msg, const Queue& queue, const string * const /*xid*/)
+ void enqueue(TransactionContext*, Message* const msg, const Queue& queue, const string * const /*xid*/)
{
- enqueued.push_back(pair<string, Message::shared_ptr>(queue.getName(),msg));
+ enqueued.push_back(pair<string, Message*>(queue.getName(),msg));
}
//dont care about any of the other methods:
@@ -59,7 +59,7 @@ class TxPublishTest : public CppUnit::TestCase
TestMessageStore store;
Queue::shared_ptr queue1;
Queue::shared_ptr queue2;
- Message::shared_ptr msg;
+ Message::shared_ptr const msg;
TxPublish op;
@@ -82,9 +82,9 @@ public:
op.prepare(0);
CPPUNIT_ASSERT_EQUAL((size_t) 2, store.enqueued.size());
CPPUNIT_ASSERT_EQUAL(string("queue1"), store.enqueued[0].first);
- CPPUNIT_ASSERT_EQUAL(msg, store.enqueued[0].second);
+ CPPUNIT_ASSERT_EQUAL(msg.get(), store.enqueued[0].second);
CPPUNIT_ASSERT_EQUAL(string("queue2"), store.enqueued[1].first);
- CPPUNIT_ASSERT_EQUAL(msg, store.enqueued[1].second);
+ CPPUNIT_ASSERT_EQUAL(msg.get(), store.enqueued[1].second);
}
void testCommit()