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/armnnTfLiteParser/test/Reduce.cpp b/src/armnnTfLiteParser/test/Reduce.cpp
index c2a22f0..cde9d09 100644
--- a/src/armnnTfLiteParser/test/Reduce.cpp
+++ b/src/armnnTfLiteParser/test/Reduce.cpp
@@ -3,15 +3,14 @@
 // SPDX-License-Identifier: MIT
 //
 
-#include <boost/test/unit_test.hpp>
 #include "ParserFlatbuffersFixture.hpp"
 #include "../TfLiteParser.hpp"
 
 #include <string>
 #include <iostream>
 
-BOOST_AUTO_TEST_SUITE(TensorflowLiteParser)
-
+TEST_SUITE("TensorflowLiteParser_Reduce")
+{
 struct ReduceMaxFixture : public ParserFlatbuffersFixture
 {
     explicit ReduceMaxFixture(const std::string& inputShape,
@@ -93,7 +92,7 @@
     SimpleReduceMaxFixture() : ReduceMaxFixture("[ 1, 1, 2, 3 ]", "[ 1, 1, 1, 3 ]", "[ 1 ]", "[  2,0,0,0 ]") {}
 };
 
-BOOST_FIXTURE_TEST_CASE(ParseReduceMax, SimpleReduceMaxFixture)
+TEST_CASE_FIXTURE(SimpleReduceMaxFixture, "ParseReduceMax")
 {
     RunTest<4, armnn::DataType::Float32, armnn::DataType::Float32>
         (0, {{ "inputTensor",  { 1001.0f, 11.0f,   1003.0f,
@@ -182,7 +181,7 @@
     SimpleReduceMinFixture() : ReduceMinFixture("[ 1, 1, 2, 3 ]", "[ 1, 1, 1, 3 ]", "[ 1 ]", "[ 2, 0, 0, 0 ]") {}
 };
 
-BOOST_FIXTURE_TEST_CASE(ParseReduceMin, SimpleReduceMinFixture)
+TEST_CASE_FIXTURE(SimpleReduceMinFixture, "ParseReduceMin")
 {
     RunTest<4, armnn::DataType::Float32, armnn::DataType::Float32>
         (0, {{ "inputTensor",  { 1001.0f, 11.0f,   1003.0f,
@@ -190,4 +189,4 @@
             {{ "outputTensor", { 10.0f, 11.0f, 12.0f } } });
 }
 
-BOOST_AUTO_TEST_SUITE_END()
+}