diff options
author | Alan Conway <aconway@apache.org> | 2009-01-16 17:25:18 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-01-16 17:25:18 +0000 |
commit | 480ed248512cedd1ca5197f2a4fb7f805943e992 (patch) | |
tree | bb72fde8bb9c263cc74e96107fcf136014463ad6 /qpid/cpp/src/tests/cluster_test.cpp | |
parent | 5e6509d4ca9f52c2a7f6f15b86fbfb5586c2c956 (diff) | |
download | qpid-python-480ed248512cedd1ca5197f2a4fb7f805943e992.tar.gz |
Separate cluster::EventHeader to allow non-copy events.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@735059 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/cluster_test.cpp')
-rw-r--r-- | qpid/cpp/src/tests/cluster_test.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/qpid/cpp/src/tests/cluster_test.cpp b/qpid/cpp/src/tests/cluster_test.cpp index f4a38ae861..6ca957f310 100644 --- a/qpid/cpp/src/tests/cluster_test.cpp +++ b/qpid/cpp/src/tests/cluster_test.cpp @@ -234,17 +234,6 @@ QPID_AUTO_TEST_CASE(testSequenceOptions) { BOOST_CHECK_EQUAL(3, getMsgSequence(c1.subs.get("q", TIME_SEC))); } -QPID_AUTO_TEST_CASE(testUnsupported) { - ScopedSuppressLogging sl; - ClusterFixture cluster(1); - Client c1(cluster[0], "c1"); - BOOST_CHECK_THROW(c1.session.dtxSelect(), FramingErrorException); - Client c2(cluster[0], "c2"); - Message m; - m.getDeliveryProperties().setTtl(1); - BOOST_CHECK_THROW(c2.session.messageTransfer(arg::content=m), Exception); -} - QPID_AUTO_TEST_CASE(testTxTransaction) { ClusterFixture cluster(1); Client c0(cluster[0], "c0"); |