• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*-----------------------------------------------------------------------------+
2 Copyright (c) 2008-2011: 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::interval_map 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 #define BOOST_ICL_USE_STATIC_BOUNDED_INTERVALS
15 //#define BOOST_ICL_CONTINUOUS_STATIC_INTERVAL_DEFAULT left_open_interval
16 
17 // interval instance types
18 #include "../test_type_lists.hpp"
19 #include "../test_value_maker.hpp"
20 #include "../test_functions.hpp"
21 
22 #include <boost/icl/interval_map.hpp>
23 #include <boost/icl/separate_interval_set.hpp>
24 #include <boost/icl/split_interval_set.hpp>
25 
26 using namespace std;
27 using namespace boost;
28 using namespace unit_test;
29 using namespace boost::icl;
30 
31 // -----------------------------------------------------------------------------
32 // test_interval_set_shared are tests that should give identical results for all
33 // interval_sets: interval_set, separate_interval_set and split_interval_set.
34 #include "../test_interval_map_shared.hpp"
35 
36 #define INTERVAL_MAP interval_map
37 #include "../fast_stat_interval_map_cases.hpp"
38 
39 
40