is_complete_test.cpp 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // (C) Copyright John Maddock 2000.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifdef TEST_STD
  6. # include <type_traits>
  7. #else
  8. # include <boost/type_traits/is_complete.hpp>
  9. #endif
  10. #include "test.hpp"
  11. #include "check_integral_constant.hpp"
  12. TT_TEST_BEGIN(is_complete)
  13. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int>::value, true);
  14. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int const>::value, true);
  15. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int volatile>::value, true);
  16. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int const volatile>::value, true);
  17. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int>::value, true);
  18. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int const&>::value, true);
  19. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int volatile&>::value, true);
  20. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int const volatile&>::value, true);
  21. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int*>::value, true);
  22. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int const*>::value, true);
  23. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int volatile*>::value, true);
  24. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int const volatile*>::value, true);
  25. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int[2]>::value, true);
  26. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int const[3]>::value, true);
  27. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int volatile[2][3]>::value, true);
  28. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int const volatile[4][5][6]>::value, true);
  29. #ifdef BOOST_TT_HAS_WORKING_IS_COMPLETE
  30. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<int[]>::value, false);
  31. #endif
  32. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<enum_UDT>::value, true);
  33. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<UDT>::value, true);
  34. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<f1>::value, true);
  35. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<mf1>::value, true);
  36. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<cmf>::value, true);
  37. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<mf8>::value, true);
  38. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<union_UDT>::value, true);
  39. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<test_abc1>::value, true);
  40. #ifdef BOOST_TT_HAS_WORKING_IS_COMPLETE
  41. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<incomplete_type>::value, false);
  42. #endif
  43. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<polymorphic_base>::value, true);
  44. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<virtual_inherit6>::value, true);
  45. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<foo0_t>::value, true);
  46. BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complete<foo4_t>::value, true);
  47. TT_TEST_END