blob: ba2570c348aa6b890c9e21c900f075052723ed18 [file] [log] [blame]
/*-----------------------------------------------------------------------------+
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_set_mixed unit test
#include <libs/icl/test/disable_test_warnings.hpp>
#include <string>
#include <boost/mpl/list.hpp>
#include "../unit_test_unwarned.hpp"
// interval instance types
#include "../test_type_lists.hpp"
#include "../test_value_maker.hpp"
#include <boost/icl/interval_set.hpp>
#include <boost/icl/separate_interval_set.hpp>
#include <boost/icl/split_interval_set.hpp>
using namespace std;
using namespace boost;
using namespace unit_test;
using namespace boost::icl;
#include "../test_interval_set_mixed.hpp"
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_ctor_4_ordered_types, T, ordered_types)
{ interval_set_mixed_ctor_4_ordered_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_equal_4_ordered_types, T, ordered_types)
{ interval_set_mixed_equal_4_ordered_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_assign_4_ordered_types, T, ordered_types)
{ interval_set_mixed_assign_4_ordered_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_ctor_4_bicremental_types, T, bicremental_types)
{ interval_set_mixed_ctor_4_bicremental_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_assign_4_bicremental_types, T, bicremental_types)
{ interval_set_mixed_assign_4_bicremental_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_equal_4_bicremental_types, T, bicremental_types)
{ interval_set_mixed_equal_4_bicremental_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_contains_4_bicremental_types, T, bicremental_types)
{ interval_set_mixed_contains_4_bicremental_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_add_4_bicremental_types, T, bicremental_types)
{ interval_set_mixed_add_4_bicremental_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_subtract_4_bicremental_types, T, bicremental_types)
{ interval_set_mixed_subtract_4_bicremental_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_erase_4_bicremental_types, T, bicremental_types)
{ interval_set_mixed_erase_4_bicremental_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_basic_intersect_4_bicremental_types, T, bicremental_types)
{ interval_set_mixed_basic_intersect_4_bicremental_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_disjoint_4_bicremental_types, T, bicremental_types)
{ interval_set_mixed_disjoint_4_bicremental_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_infix_plus_overload_4_bicremental_types, T, bicremental_types)
{ interval_set_mixed_infix_plus_overload_4_bicremental_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_infix_pipe_overload_4_bicremental_types, T, bicremental_types)
{ interval_set_mixed_infix_pipe_overload_4_bicremental_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_infix_minus_overload_4_bicremental_types, T, bicremental_types)
{ interval_set_mixed_infix_minus_overload_4_bicremental_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_infix_et_overload_4_bicremental_types, T, bicremental_types)
{ interval_set_mixed_infix_et_overload_4_bicremental_types<T>(); }
BOOST_AUTO_TEST_CASE_TEMPLATE
(test_icl_interval_set_mixed_infix_caret_overload_4_bicremental_types, T, bicremental_types)
{ interval_set_mixed_infix_caret_overload_4_bicremental_types<T>(); }