blob: 775692393ad20cb1999fb20ce89a1f80c5457b6f [file] [log] [blame]
Alexander Afanasyev8722d872014-07-02 13:00:29 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
Yingdi Yu280bb962014-01-30 09:52:43 -08002/*
Alexander Afanasyev8722d872014-07-02 13:00:29 -07003 * Copyright (c) 2012-2014 University of California, Los Angeles
Yingdi Yu280bb962014-01-30 09:52:43 -08004 *
Alexander Afanasyev8722d872014-07-02 13:00:29 -07005 * This file is part of ChronoSync, synchronization library for distributed realtime
6 * applications for NDN.
Yingdi Yu280bb962014-01-30 09:52:43 -08007 *
Alexander Afanasyev8722d872014-07-02 13:00:29 -07008 * ChronoSync is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation, either
10 * version 3 of the License, or (at your option) any later version.
11 *
12 * ChronoSync is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * ChronoSync, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Yingdi Yu280bb962014-01-30 09:52:43 -080018 */
19
Yingdi Yub20ae812014-08-15 11:20:19 -070020#ifndef CHRONOSYNC_TESTS_BOOST_TEST_HPP
21#define CHRONOSYNC_TESTS_BOOST_TEST_HPP
22
23// suppress warnings from Boost.Test
24#pragma GCC system_header
25#pragma clang system_header
Yingdi Yu280bb962014-01-30 09:52:43 -080026
27#include <boost/test/unit_test.hpp>
Yingdi Yub20ae812014-08-15 11:20:19 -070028#include <boost/concept_check.hpp>
29#include <boost/test/output_test_stream.hpp>
30
31#endif // CHRONOSYNC_TESTS_BOOST_TEST_HPP