Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
testing::internal::EqHelper< true > Class Reference

#include <gtest.h>

Static Public Member Functions

template<typename T1 , typename T2 >
static AssertionResult Compare (const char *lhs_expression, const char *rhs_expression, const T1 &lhs, const T2 &rhs, typename EnableIf<!is_pointer< T2 >::value >::type *=0)
 
template<typename T >
static AssertionResult Compare (const char *lhs_expression, const char *rhs_expression, Secret *, T *rhs)
 

Detailed Description

Definition at line 1480 of file gtest.h.

Member Function Documentation

◆ Compare() [1/2]

template<typename T1 , typename T2 >
static AssertionResult testing::internal::EqHelper< true >::Compare ( const char * lhs_expression,
const char * rhs_expression,
const T1 & lhs,
const T2 & rhs,
typename EnableIf<!is_pointer< T2 >::value >::type * = 0 )
inlinestatic

Definition at line 1487 of file gtest.h.

1497 {
1498 return CmpHelperEQ(lhs_expression, rhs_expression, lhs, rhs);
1499 }
AssertionResult CmpHelperEQ(const char *lhs_expression, const char *rhs_expression, const T1 &lhs, const T2 &rhs)
Definition gtest.h:1428
Here is the call graph for this function:

◆ Compare() [2/2]

template<typename T >
static AssertionResult testing::internal::EqHelper< true >::Compare ( const char * lhs_expression,
const char * rhs_expression,
Secret * ,
T * rhs )
inlinestatic

Definition at line 1504 of file gtest.h.

1514 {
1515 // We already know that 'lhs' is a null pointer.
1516 return CmpHelperEQ(lhs_expression, rhs_expression,
1517 static_cast<T*>(NULL), rhs);
1518 }
#define T(meth, val, expected)
Here is the call graph for this function:

The documentation for this class was generated from the following file: