diff options
author | Alan Conway <aconway@apache.org> | 2008-04-23 15:31:57 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2008-04-23 15:31:57 +0000 |
commit | 100150d5f53264f8cef2773eb7415291dbadb238 (patch) | |
tree | 821389c09105a707c918e43be536ed660ca022e5 /cpp/src/tests/SequenceSet.cpp | |
parent | c25d4ec64b056134bb730932b30f382ca3caa008 (diff) | |
download | qpid-python-100150d5f53264f8cef2773eb7415291dbadb238.tar.gz |
- SequenceSet implemented on RangeSet.
- Reduced #include dependencides on SequenceSet.h
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@650906 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/SequenceSet.cpp')
-rw-r--r-- | cpp/src/tests/SequenceSet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/SequenceSet.cpp b/cpp/src/tests/SequenceSet.cpp index c204a8b5c5..1cc66fa55a 100644 --- a/cpp/src/tests/SequenceSet.cpp +++ b/cpp/src/tests/SequenceSet.cpp @@ -80,7 +80,7 @@ QPID_AUTO_TEST_CASE(testAdd) { BOOST_CHECK(!t.contains(i)); for (uint32_t i = 2; i <= 10; i++) - BOOST_CHECK(t.contains(i)); + BOOST_CHECK_MESSAGE(t.contains(i), t << " contains " << i); RangeExpectations().expect(2, 10).check(t); } |