1
2// (C) Copyright Edward Diener 2011
3// Use, modification and distribution are subject to the Boost Software License,
4// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5// http://www.boost.org/LICENSE_1_0.txt).
6
7#include "test_has_template.hpp"
8#include <boost/detail/lightweight_test.hpp>
9
10int main()
11 {
12
13 BOOST_TEST(BOOST_TTI_HAS_TEMPLATE_GEN(ATPMemberTemplate)<AType>::value);
14 BOOST_TEST(HaveCL<AType>::value);
15 BOOST_TEST(!BOOST_TTI_HAS_TEMPLATE_GEN(AMemberTemplate)<AType>::value);
16 BOOST_TEST(!HaveAnotherMT<AType>::value);
17 BOOST_TEST(!BOOST_TTI_HAS_TEMPLATE_GEN(SomeMemberTemplate)<AnotherType>::value);
18 BOOST_TEST(!ATemplateWithParms<AnotherType>::value);
19 BOOST_TEST(BOOST_TTI_HAS_TEMPLATE_GEN(SimpleTMP)<AnotherType>::value);
20
21 BOOST_TEST(BOOST_TTI_HAS_TEMPLATE_GEN(UnionMemberTemplate)<AnotherType::AnotherUnion>::value);
22
23 // Passing non-class enclosing type will return false
24
25 BOOST_TEST(!HaveCL<AType **>::value);
26 BOOST_TEST(!BOOST_TTI_HAS_TEMPLATE_GEN(SimpleTMP)<char>::value);
27
28 return boost::report_errors();
29
30 }
31

source code of boost/libs/tti/test/test_has_template.cpp