Lines Matching refs:test_info

1952   const TestInfo* test_info = UnitTest::GetInstance()->current_test_info();
1953 ASSERT_TRUE(test_info != NULL);
1954 ExpectNonFatalFailureRecordingPropertyWithReservedKey(*test_info->result(),
5305 const TestInfo* const test_info = test_case->GetTestInfo(i);
5306 if (strcmp(test_name, test_info->name()) == 0)
5307 return test_info;
5313 const TestInfo* test_info) {
5314 return test_info->result();
5320 const TestInfo* const test_info = GetTestInfo("Names");
5322 ASSERT_STREQ("TestInfoTest", test_info->test_case_name());
5323 ASSERT_STREQ("Names", test_info->name());
5328 const TestInfo* const test_info = GetTestInfo("result");
5331 ASSERT_EQ(0, GetTestResult(test_info)->total_part_count());
5334 ASSERT_EQ(0, GetTestResult(test_info)->total_part_count());
5339 const TestInfo* const test_info = GetUnitTestImpl()->current_test_info(); \
5340 ASSERT_TRUE(test_info); \
5341 EXPECT_STREQ(__FILE__, test_info->file()); \
5342 EXPECT_EQ(expected_line, test_info->line())
6515 const TestInfo* test_info =
6517 EXPECT_TRUE(test_info == NULL)
6524 const TestInfo* test_info =
6526 EXPECT_TRUE(test_info == NULL)
6534 const TestInfo* test_info =
6536 ASSERT_TRUE(NULL != test_info)
6538 EXPECT_STREQ("CurrentTestInfoTest", test_info->test_case_name())
6540 EXPECT_STREQ("WorksForFirstTestInATestCase", test_info->name())
6549 const TestInfo* test_info =
6551 ASSERT_TRUE(NULL != test_info)
6553 EXPECT_STREQ("CurrentTestInfoTest", test_info->test_case_name())
6555 EXPECT_STREQ("WorksForSecondTestInATestCase", test_info->name())