]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/icl/test/test_split_interval_map_infix_/test_split_interval_map_infix.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / icl / test / test_split_interval_map_infix_ / test_split_interval_map_infix.cpp
1 /*-----------------------------------------------------------------------------+
2 Copyright (c) 2008-2009: Joachim Faulhaber
3 +------------------------------------------------------------------------------+
4 Distributed under the Boost Software License, Version 1.0.
5 (See accompanying file LICENCE.txt or copy at
6 http://www.boost.org/LICENSE_1_0.txt)
7 +-----------------------------------------------------------------------------*/
8 #define BOOST_TEST_MODULE icl::split_interval_map_infix unit test
9 #include <libs/icl/test/disable_test_warnings.hpp>
10 #include <string>
11 #include <boost/mpl/list.hpp>
12 #include "../unit_test_unwarned.hpp"
13
14
15 // interval instance types
16 #include "../test_type_lists.hpp"
17 #include "../test_value_maker.hpp"
18
19 #include <boost/icl/separate_interval_set.hpp>
20 #include <boost/icl/split_interval_set.hpp>
21 #include <boost/icl/interval_map.hpp>
22 #include <boost/icl/split_interval_map.hpp>
23
24 using namespace std;
25 using namespace boost;
26 using namespace unit_test;
27 using namespace boost::icl;
28
29 // -----------------------------------------------------------------------------
30 // test_interval_map_shared are tests that should give identical results for all
31 // interval_maps: interval_map and split_interval_map.
32 #include "../test_interval_map_shared.hpp"
33
34 #define INTERVAL_MAP split_interval_map
35 #include "../test_interval_map_infix_cases.hpp"
36
37