test_has_type_ct.cpp 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. // (C) Copyright Edward Diener 2011
  2. // Use, modification and distribution are subject to the Boost Software License,
  3. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt).
  5. #include "test_has_type.hpp"
  6. #include <boost/detail/lightweight_test.hpp>
  7. #include <boost/mpl/placeholders.hpp>
  8. #include <boost/type_traits/is_same.hpp>
  9. using namespace boost::mpl::placeholders;
  10. int main()
  11. {
  12. BOOST_TEST((BOOST_TTI_HAS_TYPE_GEN(AnIntType)<AType,boost::is_same<int,_> >::value));
  13. BOOST_TEST((NameStruct<AType,boost::is_same<AType::AStructType,_> >::value));
  14. BOOST_TEST((BOOST_TTI_HAS_TYPE_GEN(AnIntTypeReference)<AType,boost::is_same<int &,_> >::value));
  15. BOOST_TEST((BOOST_TTI_HAS_TYPE_GEN(BType)<AType,boost::is_same<AType::BType,_> >::value));
  16. BOOST_TEST((TheInteger<AType::BType,boost::is_same<int,_> >::value));
  17. BOOST_TEST((BOOST_TTI_HAS_TYPE_GEN(CType)<AType::BType,boost::is_same<AType::BType::CType,_> >::value));
  18. BOOST_TEST((BOOST_TTI_HAS_TYPE_GEN(AnotherIntegerType)<AType::BType::CType,boost::is_same<int,_> >::value));
  19. BOOST_TEST((SomethingElse<AnotherType,boost::is_same<AType::AnIntType,_> >::value));
  20. BOOST_TEST((!BOOST_TTI_HAS_TYPE_GEN(NoOtherType)<AnotherType,boost::is_same<double,_> >::value));
  21. // Passing non-class enclosing type will return false
  22. BOOST_TEST((!BOOST_TTI_HAS_TYPE_GEN(AnIntTypeReference)<AType **,boost::is_same<int &,_> >::value));
  23. BOOST_TEST((!SomethingElse<float,boost::is_same<AType::AnIntType,_> >::value));
  24. return boost::report_errors();
  25. }