Line data Source code
1 : /**
2 : * @file Trgdataformats_test.cxx
3 : *
4 : * This is part of the DUNE DAQ Application Framework, copyright 2020.
5 : * Licensing/copyright details are in the COPYING file that you should have
6 : * received with this code.
7 : */
8 :
9 : #include "trgdataformats/TriggerActivityData.hpp"
10 : #include "trgdataformats/TriggerCandidateData.hpp"
11 : #include "trgdataformats/TriggerObjectOverlay.hpp"
12 : #include "trgdataformats/TriggerPrimitive.hpp"
13 : #include "trgdataformats/Types.hpp"
14 :
15 : #define BOOST_TEST_MODULE Trgdataformats_test // NOLINT
16 :
17 : #include "boost/test/unit_test.hpp"
18 :
19 : BOOST_AUTO_TEST_SUITE(Trgdataformats_test)
20 :
21 2 : BOOST_AUTO_TEST_CASE(HelpfulMessage)
22 : {
23 1 : BOOST_TEST_MESSAGE("This unit test file is simply here to check that the headers compile correctly");
24 1 : }
25 :
26 : BOOST_AUTO_TEST_SUITE_END()
|