From 7e92a02008a01cc824bc34dd7296791b4d8912e5 Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Mon, 29 Mar 2010 16:00:24 +0000 Subject: 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 --- qpid/cpp/src/tests/Uuid.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'qpid/cpp/src/tests/Uuid.cpp') 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); -- cgit v1.2.1