blob: 7efe49d603b7a7955d1c18a77b5d717deb5e92b1 [file] [log] [blame]
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoda278492019-01-29 15:00:49 -05002/*
Ashlesh Gawande5a895472020-01-25 18:07:32 -08003 * Copyright (c) 2014-2020, The University of Memphis
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05004 *
5 * This file is part of PSync.
6 * See AUTHORS.md for complete list of PSync authors and contributors.
7 *
8 * PSync is free software: you can redistribute it and/or modify it under the terms
Ashlesh Gawande0cf4b602019-01-18 15:58:17 -06009 * of the GNU Lesser General Public License as published by the Free Software Foundation,
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050010 * either version 3 of the License, or (at your option) any later version.
11 *
12 * PSync 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
Ashlesh Gawande0cf4b602019-01-18 15:58:17 -060014 * PURPOSE. See the GNU Lesser General Public License for more details.
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050015 *
Ashlesh Gawande0cf4b602019-01-18 15:58:17 -060016 * You should have received a copy of the GNU Lesser General Public License along with
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050017 * PSync, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * \author Yingdi Yu <yingdi@cs.ucla.edu>
Davide Pesaventoda278492019-01-29 15:00:49 -050020 */
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050021
22#ifndef PSYNC_TESTS_BOOST_TEST_HPP
23#define PSYNC_TESTS_BOOST_TEST_HPP
24
25// suppress warnings from Boost.Test
26#pragma GCC system_header
27#pragma clang system_header
28
Davide Pesaventoda278492019-01-29 15:00:49 -050029#define BOOST_TEST_DYN_LINK
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050030#include <boost/test/unit_test.hpp>
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050031
32#endif // PSYNC_TESTS_BOOST_TEST_HPP