aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/test/ProfilingTests.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/test/ProfilingTests.hpp')
-rw-r--r--src/profiling/test/ProfilingTests.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/profiling/test/ProfilingTests.hpp b/src/profiling/test/ProfilingTests.hpp
index f96a1c89ab..a8ca1b9b18 100644
--- a/src/profiling/test/ProfilingTests.hpp
+++ b/src/profiling/test/ProfilingTests.hpp
@@ -16,7 +16,7 @@
#include <common/include/CommandHandlerFunctor.hpp>
-#include <boost/test/unit_test.hpp>
+#include <doctest/doctest.h>
#include <chrono>
#include <thread>
@@ -213,15 +213,15 @@ public:
, m_BackupProfilingConnectionFactory(nullptr)
{
- BOOST_CHECK(m_MockProfilingConnectionFactory);
+ CHECK(m_MockProfilingConnectionFactory);
SwapProfilingConnectionFactory(m_ProfilingService,
m_MockProfilingConnectionFactory.get(),
m_BackupProfilingConnectionFactory);
- BOOST_CHECK(m_BackupProfilingConnectionFactory);
+ CHECK(m_BackupProfilingConnectionFactory);
}
~SwapProfilingConnectionFactoryHelper()
{
- BOOST_CHECK(m_BackupProfilingConnectionFactory);
+ CHECK(m_BackupProfilingConnectionFactory);
IProfilingConnectionFactory* temp = nullptr;
SwapProfilingConnectionFactory(m_ProfilingService,
m_BackupProfilingConnectionFactory,