diff options
| author | Gordon Sim <gsim@apache.org> | 2010-03-29 16:00:24 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2010-03-29 16:00:24 +0000 |
| commit | 7e92a02008a01cc824bc34dd7296791b4d8912e5 (patch) | |
| tree | a2936c8c34a7ca04a35a22abeec00a4e639d80c2 /qpid/cpp/src/tests/Uuid.cpp | |
| parent | b6a0571500060b5bee5164e76d288b000147c08d (diff) | |
| download | qpid-python-7e92a02008a01cc824bc34dd7296791b4d8912e5.tar.gz | |
QPID-664: move Variant and Uuid from messaging to types namespace
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@928814 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/Uuid.cpp')
| -rw-r--r-- | qpid/cpp/src/tests/Uuid.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/qpid/cpp/src/tests/Uuid.cpp b/qpid/cpp/src/tests/Uuid.cpp index 6d6c07169f..4c6505b139 100644 --- a/qpid/cpp/src/tests/Uuid.cpp +++ b/qpid/cpp/src/tests/Uuid.cpp @@ -18,7 +18,7 @@ #include "qpid/framing/Uuid.h" #include "qpid/framing/Buffer.h" -#include "qpid/messaging/Uuid.h" +#include "qpid/types/Uuid.h" #include "qpid/sys/alloca.h" #include "unit_test.h" @@ -80,15 +80,15 @@ QPID_AUTO_TEST_CASE(testUuidEncodeDecode) { string(decoded.begin(), decoded.end())); } -QPID_AUTO_TEST_CASE(testMessagingUuid) +QPID_AUTO_TEST_CASE(testTypesUuid) { - //tests for the Uuid class in the messaging namespace (introduced + //tests for the Uuid class in the types namespace (introduced //to avoid pulling in dependencies from framing) - messaging::Uuid a; - messaging::Uuid b(true); - messaging::Uuid c(true); - messaging::Uuid d(b); - messaging::Uuid e; + types::Uuid a; + types::Uuid b(true); + types::Uuid c(true); + types::Uuid d(b); + types::Uuid e; e = c; BOOST_CHECK(!a); |
