// Boost.Range library // // Copyright Neil Groves 2010. Use, modification and // distribution is subject to the Boost Software License, Version // 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // #include #include "type_erased_test.hpp" #include #include #include namespace boost_range_adaptor_type_erased_test { namespace { void test_type_erased() { test_driver< std::list >(); test_driver< std::vector >(); test_driver< std::list >(); test_driver< std::vector >(); } } // anonymous namespace } // namespace boost_range_adaptor_type_erased_test boost::unit_test::test_suite* init_unit_test_suite(int argc, char* argv[]) { boost::unit_test::test_suite* test = BOOST_TEST_SUITE("RangeTestSuite.adaptor.type_erased"); test->add(BOOST_TEST_CASE( &boost_range_adaptor_type_erased_test::test_type_erased)); return test; }