• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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::set_itl_set 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 <set>
20 #include <boost/icl/associative_element_container.hpp>
21 #include <boost/icl/interval_set.hpp>
22 #include <boost/icl/separate_interval_set.hpp>
23 #include <boost/icl/split_interval_set.hpp>
24 #include <boost/icl/detail/interval_morphism.hpp>
25 #include "../test_laws.hpp"
26 
27 using namespace std;
28 using namespace boost;
29 using namespace unit_test;
30 using namespace boost::icl;
31 
32 // -----------------------------------------------------------------------------
33 // test_interval_set_shared are tests that should give identical results for all
34 // interval_sets: interval_set, separate_interval_set and split_interval_set.
35 #include "../test_set_icl_set.hpp"
36 
37 #include "fastest_set_icl_set_cases.hpp"
38 
39 
40