Home | History | Annotate | Download | only in gtest

Lines Matching defs:ASSERT_EQ

1341 // (e.g. ASSERT_EQ).  OtherOperand is the type of the other operand in
1422 // Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc)
1472 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
1503 // This specialization is used when the first argument to ASSERT_EQ()
1509 // version will be picked when the second argument to ASSERT_EQ() is
1510 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
1519 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr)
1528 // This version will be picked when the second argument to ASSERT_EQ() is a
1529 // pointer, e.g. ASSERT_EQ(NULL, a_pointer).
2011 # define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2)