aboutsummaryrefslogtreecommitdiff
path: root/src/armnnOnnxParser/test/Constructor.cpp
blob: e234dba5eece5e6f2689f247a85286fd91a4f777 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// See LICENSE file in the project root for full license information.
//

#include <boost/test/unit_test.hpp>
#include "armnnOnnxParser/IOnnxParser.hpp"

BOOST_AUTO_TEST_SUITE(OnnxParser)

BOOST_AUTO_TEST_CASE(Create)
{
    armnnOnnxParser::IOnnxParserPtr parser(armnnOnnxParser::IOnnxParser::Create());
}

BOOST_AUTO_TEST_SUITE_END()