From 1625efc870f1a8b7c6e6382277ddbb245f91a294 Mon Sep 17 00:00:00 2001 From: Sadik Armagan Date: Thu, 10 Jun 2021 18:24:34 +0100 Subject: IVGCVSW-5963 'Move unit tests to new framework' * Used doctest in ArmNN unit tests Signed-off-by: Sadik Armagan Change-Id: Ia9cf5fc72775878885c5f864abf2c56b3a935f1a --- src/armnnOnnxParser/test/Relu.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/armnnOnnxParser/test/Relu.cpp') diff --git a/src/armnnOnnxParser/test/Relu.cpp b/src/armnnOnnxParser/test/Relu.cpp index a7f3bf3eec..031872e1c2 100644 --- a/src/armnnOnnxParser/test/Relu.cpp +++ b/src/armnnOnnxParser/test/Relu.cpp @@ -3,12 +3,11 @@ // SPDX-License-Identifier: MIT // -#include #include "armnnOnnxParser/IOnnxParser.hpp" #include "ParserPrototxtFixture.hpp" -BOOST_AUTO_TEST_SUITE(OnnxParser) - +TEST_SUITE("OnnxParser_Relu") +{ struct ReluMainFixture : public armnnUtils::ParserPrototxtFixture { ReluMainFixture() @@ -61,10 +60,10 @@ struct ReluMainFixture : public armnnUtils::ParserPrototxtFixture({{"Input", { -1.0f, -0.5f, 1.25f, -3.0f}}}, {{ "Output", { 0.0f, 0.0f, 1.25f, 0.0f}}}); } -BOOST_AUTO_TEST_SUITE_END() +} -- cgit v1.2.1