aboutsummaryrefslogtreecommitdiff
path: root/src/armnnDeserializer/test/DeserializeGather.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnDeserializer/test/DeserializeGather.cpp')
-rw-r--r--src/armnnDeserializer/test/DeserializeGather.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/armnnDeserializer/test/DeserializeGather.cpp b/src/armnnDeserializer/test/DeserializeGather.cpp
index 0590e701e4..47919c4481 100644
--- a/src/armnnDeserializer/test/DeserializeGather.cpp
+++ b/src/armnnDeserializer/test/DeserializeGather.cpp
@@ -3,14 +3,13 @@
// SPDX-License-Identifier: MIT
//
-#include <boost/test/unit_test.hpp>
#include "ParserFlatbuffersSerializeFixture.hpp"
#include <armnnDeserializer/IDeserializer.hpp>
#include <string>
-BOOST_AUTO_TEST_SUITE(Deserializer)
-
+TEST_SUITE("Deserializer_Gather")
+{
struct GatherFixture : public ParserFlatbuffersSerializeFixture
{
explicit GatherFixture(const std::string& inputShape,
@@ -133,7 +132,7 @@ struct SimpleGatherFixtureFloat32 : GatherFixture
"[ 2, 3, 2, 3 ]", "0", "Float32", "IntData") {}
};
-BOOST_FIXTURE_TEST_CASE(GatherFloat32, SimpleGatherFixtureFloat32)
+TEST_CASE_FIXTURE(SimpleGatherFixtureFloat32, "GatherFloat32")
{
RunTest<4, armnn::DataType::Float32>(0,
{{"InputLayer", { 1, 2, 3,
@@ -156,5 +155,5 @@ BOOST_FIXTURE_TEST_CASE(GatherFloat32, SimpleGatherFixtureFloat32)
4, 5, 6 }}});
}
-BOOST_AUTO_TEST_SUITE_END()
+}