aboutsummaryrefslogtreecommitdiff
path: root/src/armnnDeserializer/test/DeserializeDepthwiseConv2d.cpp
diff options
context:
space:
mode:
authorMatthew Sloyan <matthew.sloyan@arm.com>2021-06-20 18:45:05 +0100
committerTeresaARM <teresa.charlinreyes@arm.com>2021-06-21 11:25:27 +0000
commit7a00eaa6ecf121623823b1951c0e6c9093271adf (patch)
tree78503cef33c652e8567595ac3255b9041556e133 /src/armnnDeserializer/test/DeserializeDepthwiseConv2d.cpp
parent50f7b327e1871596355bbfed8aae5d4f7b2caae7 (diff)
downloadarmnn-7a00eaa6ecf121623823b1951c0e6c9093271adf.tar.gz
Remove remaining boost tests
* Updated unit tests to use doctest. Signed-off-by: Matthew Sloyan <matthew.sloyan@arm.com> Change-Id: I5231225cd0830f16cc0ef20e9ef27e7b92feab19
Diffstat (limited to 'src/armnnDeserializer/test/DeserializeDepthwiseConv2d.cpp')
-rw-r--r--src/armnnDeserializer/test/DeserializeDepthwiseConv2d.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/armnnDeserializer/test/DeserializeDepthwiseConv2d.cpp b/src/armnnDeserializer/test/DeserializeDepthwiseConv2d.cpp
index 83dede15c6..1920c1cc79 100644
--- a/src/armnnDeserializer/test/DeserializeDepthwiseConv2d.cpp
+++ b/src/armnnDeserializer/test/DeserializeDepthwiseConv2d.cpp
@@ -7,12 +7,12 @@
#include <armnnDeserializer/IDeserializer.hpp>
-#include <boost/test/unit_test.hpp>
+#include <doctest/doctest.h>
#include <string>
-BOOST_AUTO_TEST_SUITE(Deserializer)
-
+TEST_SUITE("Deserializer_DepthwiseConv2d")
+{
struct DepthwiseConv2dFlatbufferVersion1Fixture : public ParserFlatbuffersSerializeFixture
{
explicit DepthwiseConv2dFlatbufferVersion1Fixture()
@@ -218,7 +218,7 @@ struct DepthwiseConv2dFlatbufferVersion1Fixture : public ParserFlatbuffersSerial
// file. It ensures older models can still be read and executed
// featureVersion weights layout scheme 1 indicates a change in the depthwise weights layout within
// armm from [M,I,H,W] --> [1,H,W,I*M]
-BOOST_FIXTURE_TEST_CASE(DepthwiseConv2d_FlatbufferVersion1, DepthwiseConv2dFlatbufferVersion1Fixture)
+TEST_CASE_FIXTURE(DepthwiseConv2dFlatbufferVersion1Fixture, "DepthwiseConv2d_FlatbufferVersion1")
{
RunTest<4, armnn::DataType::QAsymmS8>(
0,
@@ -230,4 +230,4 @@ BOOST_FIXTURE_TEST_CASE(DepthwiseConv2d_FlatbufferVersion1, DepthwiseConv2dFlatb
25,36,12,37,42,25,29,14, 9});
}
-BOOST_AUTO_TEST_SUITE_END() \ No newline at end of file
+} \ No newline at end of file