// Boost.TypeErasure library // // Copyright 2011 Steven Watanabe // // Distributed under 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) // // $Id$ #include #include #include #include #include #define BOOST_TEST_MAIN #include using namespace boost::type_erasure; template struct common : ::boost::mpl::vector< copy_constructible, typeid_ > {}; BOOST_AUTO_TEST_CASE(test_basic) { typedef ::boost::mpl::vector, dereferenceable > test_concept; int i; any x(&i); BOOST_CHECK_EQUAL(&*x, &i); } BOOST_AUTO_TEST_CASE(test_any_result) { typedef ::boost::mpl::vector, common<_a>, dereferenceable<_a&> > test_concept; typedef ::boost::mpl::map< ::boost::mpl::pair<_self, int*>, ::boost::mpl::pair<_a, int> > types; int i; any x(&i, make_binding()); any y(*x); BOOST_CHECK_EQUAL(any_cast(&y), &i); } BOOST_AUTO_TEST_CASE(test_any_result_const) { typedef ::boost::mpl::vector, common<_a>, dereferenceable > test_concept; typedef ::boost::mpl::map< ::boost::mpl::pair<_self, const int*>, ::boost::mpl::pair<_a, int> > types; const int i = 0; any x(&i, make_binding()); any y(*x); BOOST_CHECK_EQUAL(any_cast(&y), &i); }