System::TestPredicates::TypeTraits::has_print_to_method< T, Enable > Struct Template Reference

Checks for overload of PrintTo function that accepts given type as first argument. If an overload exists, inherits std::true_type, otherwise inheirts std::false_type. More...

Inherits false_type.

Detailed Description

template<typename T, typename Enable = void>
struct System::TestPredicates::TypeTraits::has_print_to_method< T, Enable >

Checks for overload of PrintTo function that accepts given type as first argument. If an overload exists, inherits std::true_type, otherwise inheirts std::false_type.

Template Parameters
TType to check.
EnableFormal argument for SFINAE to work.