Home | History | Annotate | Download | only in test

Lines Matching refs:expected

63 #define GTEST_CHECK_INT_EQ_(expected, actual) \
65 const int expected_val = (expected);\
70 << "Expected: " #expected "\n"\
96 EXPECT_EQ(0, 1) << "Expected failure.";
154 // Checks that the count for each test is expected.
155 void CheckCounts(int expected) {
156 GTEST_CHECK_INT_EQ_(expected, g_environment_set_up_count);
157 GTEST_CHECK_INT_EQ_(expected, g_environment_tear_down_count);
158 GTEST_CHECK_INT_EQ_(expected, g_should_fail_count);
159 GTEST_CHECK_INT_EQ_(expected, g_should_pass_count);
160 GTEST_CHECK_INT_EQ_(expected, g_death_test_count);
162 GTEST_CHECK_INT_EQ_(expected * kNumberOfParamTests, g_param_test_count);