mirror of
https://github.com/boostorg/tti.git
synced 2026-01-25 06:42:25 +00:00
19 lines
692 B
C++
19 lines
692 B
C++
#include "TestHasTemplateCheckParams.hpp"
|
|
#include <boost/detail/lightweight_test.hpp>
|
|
|
|
int main()
|
|
{
|
|
|
|
BOOST_TEST(tti::has_template_check_params_ATPMemberTemplate<AType>::value);
|
|
BOOST_TEST(tti::HaveCL<AType>::value);
|
|
BOOST_TEST(tti::has_template_check_params_AMemberTemplate<AType>::value);
|
|
BOOST_TEST(tti::HaveAnotherMT<AType>::value);
|
|
BOOST_TEST(tti::has_template_check_params_SomeMemberTemplate<AnotherType>::value);
|
|
BOOST_TEST(tti::ATemplateWithParms<AnotherType>::value);
|
|
BOOST_TEST(tti::has_template_check_params_SimpleTMP<AnotherType>::value);
|
|
BOOST_TEST(!tti::has_template_check_params_TemplateNotExist<AnotherType>::value);
|
|
|
|
return boost::report_errors();
|
|
|
|
}
|