IVGCVSW-5963 'Move unit tests to new framework'

* Used doctest in ArmNN unit tests

Signed-off-by: Sadik Armagan <sadik.armagan@arm.com>
Change-Id: Ia9cf5fc72775878885c5f864abf2c56b3a935f1a
diff --git a/src/profiling/test/ProfilingTests.hpp b/src/profiling/test/ProfilingTests.hpp
index f96a1c8..a8ca1b9 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 @@
         , 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,