Alexander Afanasyev | 4ffcff2 | 2014-09-02 15:39:20 -0700 | [diff] [blame] | 1 | #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 Jiang | 30ad892 | 2014-09-04 15:08:52 -0700 | [diff] [blame] | 8 | #include "logger.hpp" |
| 9 | |
Alexander Afanasyev | 4ffcff2 | 2014-09-02 15:39:20 -0700 | [diff] [blame] | 10 | #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 | |
| 19 | namespace ndn { |
| 20 | namespace ndns { |
| 21 | namespace tests { |
| 22 | |
| 23 | } //tests |
| 24 | } //ndns |
| 25 | } //ndn |
| 26 | |
| 27 | #endif // NDN_TESTS_BOOST_TEST_HPP |