From e64d925b45ff4802fe924ea2e8108bb1932b4d01 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sun, 1 Mar 2015 21:15:01 +0100 Subject: o Replacing boost::logging with log4cplus. --- test/ByteBufferTest.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test') diff --git a/test/ByteBufferTest.cpp b/test/ByteBufferTest.cpp index fb31da3..5aad376 100644 --- a/test/ByteBufferTest.cpp +++ b/test/ByteBufferTest.cpp @@ -1,12 +1,11 @@ #include "ble/ByteBuffer.h" -#include "log.h" #define BOOST_TEST_MODULE "ByteBuffer" #include #define checkBuffer(buffer, capacity, size, cursor) \ - if(false) {D << "capacity=" << buffer.getCapacity() << ", size=" << buffer.getSize() << ", cursor=" << buffer.getCursor();} \ + if(false) {cout << "capacity=" << buffer.getCapacity() << ", size=" << buffer.getSize() << ", cursor=" << buffer.getCursor();} \ BOOST_CHECK_EQUAL(buffer.getSize(), size); \ BOOST_CHECK_EQUAL(buffer.getCapacity(), capacity); \ BOOST_CHECK_EQUAL(buffer.getCursor(), cursor) -- cgit v1.2.3