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)
1340 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
1371 // This specialization is used when the first argument to ASSERT_EQ()
1377 // version will be picked when the second argument to ASSERT_EQ() is
1378 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
1387 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr)
1396 // This version will be picked when the second argument to ASSERT_EQ() is a
1397 // pointer, e.g. ASSERT_EQ(NULL, a_pointer).
1880 # define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2)