blob: cbf897d2f6873093f318c7e1d0921240cb61f13d [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/*
Davide Pesaventofae9def2019-01-29 14:34:33 -05003 * Copyright (c) 2012-2019 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
Davide Pesaventofae9def2019-01-29 14:34:33 -050027#define BOOST_TEST_DYN_LINK
Yingdi Yu280bb962014-01-30 09:52:43 -080028#include <boost/test/unit_test.hpp>
Yingdi Yub20ae812014-08-15 11:20:19 -070029
30#endif // CHRONOSYNC_TESTS_BOOST_TEST_HPP