aboutsummaryrefslogtreecommitdiff
path: root/src/armnnDeserializer/test/DeserializeLogSoftmax.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnDeserializer/test/DeserializeLogSoftmax.cpp')
-rw-r--r--src/armnnDeserializer/test/DeserializeLogSoftmax.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/armnnDeserializer/test/DeserializeLogSoftmax.cpp b/src/armnnDeserializer/test/DeserializeLogSoftmax.cpp
index 201b64b620..d437ac8c7f 100644
--- a/src/armnnDeserializer/test/DeserializeLogSoftmax.cpp
+++ b/src/armnnDeserializer/test/DeserializeLogSoftmax.cpp
@@ -6,10 +6,8 @@
#include "ParserFlatbuffersSerializeFixture.hpp"
#include <armnnDeserializer/IDeserializer.hpp>
-#include <boost/test/unit_test.hpp>
-
-BOOST_AUTO_TEST_SUITE(Deserializer)
-
+TEST_SUITE("Deserializer_LogSoftmax")
+{
struct LogSoftmaxFixture : public ParserFlatbuffersSerializeFixture
{
explicit LogSoftmaxFixture(const std::string &shape,
@@ -111,7 +109,7 @@ struct LogSoftmaxFloat32Fixture : LogSoftmaxFixture
{}
};
-BOOST_FIXTURE_TEST_CASE(LogSoftmaxFloat32, LogSoftmaxFloat32Fixture)
+TEST_CASE_FIXTURE(LogSoftmaxFloat32Fixture, "LogSoftmaxFloat32")
{
RunTest<4, armnn::DataType::Float32>(
0,
@@ -125,4 +123,4 @@ BOOST_FIXTURE_TEST_CASE(LogSoftmaxFloat32, LogSoftmaxFloat32Fixture)
});
}
-BOOST_AUTO_TEST_SUITE_END()
+}