blob: 8590524db757b29e60efe178ffd04962812bdee5 [file] [log] [blame]
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -07001#ifndef NDNS_TESTS_BOOST_TEST_HPP
2#define NDNS_TESTS_BOOST_TEST_HPP
3
4// suppress warnings from Boost.Test
5#pragma GCC system_header
6#pragma clang system_header
7
8#include <boost/test/test_tools.hpp>
9#include <boost/test/unit_test.hpp>
10#include <boost/concept_check.hpp>
11#include <boost/test/output_test_stream.hpp>
12
13#include <ndn-cxx/name.hpp>
14#include <ndn-cxx/data.hpp>
15#include <ndn-cxx/interest.hpp>
16
17namespace ndn {
18namespace ndns {
19namespace tests {
20
21} //tests
22} //ndns
23} //ndn
24
25#endif // NDN_TESTS_BOOST_TEST_HPP