Home | History | Annotate | Download | only in gtest

Lines Matching defs:ASSERT_EQ

1284 // Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc)
1342 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
1373 // This specialization is used when the first argument to ASSERT_EQ()
1379 // version will be picked when the second argument to ASSERT_EQ() is
1380 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
1389 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr)
1398 // This version will be picked when the second argument to ASSERT_EQ() is a
1399 // pointer, e.g. ASSERT_EQ(NULL, a_pointer).
1882 # define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2)