blob: cfc52105587b30f50ae78babd6ff4834872c21ea [file] [log] [blame]
// 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 <boost/type_erasure/any.hpp>
#include <boost/type_erasure/tuple.hpp>
#include <boost/type_erasure/builtin.hpp>
#include <boost/type_erasure/operators.hpp>
#include <boost/type_erasure/any_cast.hpp>
#include <boost/type_erasure/binding_of.hpp>
#include <boost/mpl/vector.hpp>
#define BOOST_TEST_MAIN
#include <boost/test/unit_test.hpp>
using namespace boost::type_erasure;
template<class T = _self>
struct common : ::boost::mpl::vector<
copy_constructible<T>,
typeid_<T>
> {};
BOOST_AUTO_TEST_CASE(test_binding_of)
{
typedef ::boost::mpl::vector<common<> > test_concept;
any<test_concept> x(2);
binding<test_concept> b = binding_of(x);
binding<test_concept> expected(
make_binding<
::boost::mpl::map< ::boost::mpl::pair<_self, int> >
>());
BOOST_CHECK(b == expected);
}