/*-----------------------------------------------------------------------------+ Copyright (c) 2008-2009: Joachim Faulhaber +------------------------------------------------------------------------------+ Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENCE.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +-----------------------------------------------------------------------------*/ #define BOOST_TEST_MODULE icl::interval_map_mixed unit test #include #include #include #include "../unit_test_unwarned.hpp" // interval instance types #include "../test_type_lists.hpp" #include "../test_value_maker.hpp" #include #include #include #include #include using namespace std; using namespace boost; using namespace unit_test; using namespace boost::icl; #include "../test_interval_map_mixed.hpp" BOOST_AUTO_TEST_CASE (fastest_icl_interval_map_mixed_ctor_4_ordered_types) { interval_map_mixed_ctor_4_ordered_types(); } BOOST_AUTO_TEST_CASE (fastest_icl_interval_map_mixed_equal_4_ordered_types) { interval_map_mixed_equal_4_ordered_types(); } BOOST_AUTO_TEST_CASE (fastest_icl_interval_map_mixed_assign_4_ordered_types) { interval_map_mixed_assign_4_ordered_types(); } BOOST_AUTO_TEST_CASE (fastest_icl_interval_map_mixed_ctor_4_bicremental_types) { interval_map_mixed_ctor_4_bicremental_types(); } BOOST_AUTO_TEST_CASE (fastest_icl_interval_map_mixed_assign_4_bicremental_types) { interval_map_mixed_assign_4_bicremental_types(); } BOOST_AUTO_TEST_CASE (fastest_icl_interval_map_mixed_equal_4_bicremental_types) { interval_map_mixed_equal_4_bicremental_types(); } BOOST_AUTO_TEST_CASE (fastest_icl_partial_interval_map_mixed_inclusion_compare_4_bicremental_types) { partial_interval_map_mixed_inclusion_compare_4_bicremental_types(); } BOOST_AUTO_TEST_CASE (fastest_icl_partial_interval_map_mixed_contains_4_bicremental_types) { partial_interval_map_mixed_contains_4_bicremental_types(); }