Home | History | Annotate | Download | only in gtest

Lines Matching defs:ASSERT_EQ

6940 // (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure.
6943 // and their values, as strings. For example, for ASSERT_EQ(foo, bar)
18309 // Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc)
18365 // lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
18396 // This specialization is used when the first argument to ASSERT_EQ()
18402 // version will be picked when the second argument to ASSERT_EQ() is
18403 // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
18412 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr)
18421 // This version will be picked when the second argument to ASSERT_EQ() is a
18422 // pointer, e.g. ASSERT_EQ(NULL, a_pointer).
18875 // of ASSERT_EQ in gtest.h for an example.
19262 # define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2)