forked from NA62/na62-trigger-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnitTests.h
More file actions
executable file
·33 lines (26 loc) · 762 Bytes
/
Copy pathUnitTests.h
File metadata and controls
executable file
·33 lines (26 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
* UnitTests.h
*
* Created on: Jan 28, 2015
* Author: Jonas Kunze (kunze.jonas@gmail.com)
*/
/*
* Include your unit test files here. If they look like following they will be automatically executed:
*
#ifndef MY_UNIT_TEST_H_
#define MY_UNIT_TEST_H_
#define BOOST_TEST_MODULE MyTest
#include <boost/test/unit_test.hpp>
BOOST_AUTO_TEST_CASE( my_test ) {
SomeObject obj;
BOOST_CHECK(obj.method(123)==567);
}
#endif
More information: http://www.boost.org/doc/libs/1_44_0/libs/test/doc/html/tutorials/new-year-resolution.html
*/
#ifndef UNITTESTS_H_
#define UNITTESTS_H_
#include "common/unittests/DecoderHandlerTest.h"
#include "common/unittests/TrbFragmentDecoderTest.h"
#include "l1/unittests/CedarTest.h"
#endif /* UNITTESTS_H_ */