blob: b900be4d31355653a67d0ea9d06642ab08a1938c [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
Shock Jiang30ad8922014-09-04 15:08:52 -07008#include "logger.hpp"
9
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -070010#include <boost/test/test_tools.hpp>
11#include <boost/test/unit_test.hpp>
12#include <boost/concept_check.hpp>
13#include <boost/test/output_test_stream.hpp>
14
15#include <ndn-cxx/name.hpp>
16#include <ndn-cxx/data.hpp>
17#include <ndn-cxx/interest.hpp>
18
19namespace ndn {
20namespace ndns {
21namespace tests {
22
23} //tests
24} //ndns
25} //ndn
26
27#endif // NDN_TESTS_BOOST_TEST_HPP