• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/googletest/googletest/test/

Lines Matching defs:test_info

1973   const TestInfo* test_info = UnitTest::GetInstance()->current_test_info();
1974 ASSERT_TRUE(test_info != NULL);
1975 ExpectNonFatalFailureRecordingPropertyWithReservedKey(*test_info->result(),
5336 const TestInfo* const test_info = test_case->GetTestInfo(i);
5337 if (strcmp(test_name, test_info->name()) == 0)
5338 return test_info;
5344 const TestInfo* test_info) {
5345 return test_info->result();
5351 const TestInfo* const test_info = GetTestInfo("Names");
5353 ASSERT_STREQ("TestInfoTest", test_info->test_case_name());
5354 ASSERT_STREQ("Names", test_info->name());
5359 const TestInfo* const test_info = GetTestInfo("result");
5362 ASSERT_EQ(0, GetTestResult(test_info)->total_part_count());
5365 ASSERT_EQ(0, GetTestResult(test_info)->total_part_count());
5370 const TestInfo* const test_info = GetUnitTestImpl()->current_test_info(); \
5371 ASSERT_TRUE(test_info); \
5372 EXPECT_STREQ(__FILE__, test_info->file()); \
5373 EXPECT_EQ(expected_line, test_info->line())
6546 const TestInfo* test_info =
6548 EXPECT_TRUE(test_info == NULL)
6555 const TestInfo* test_info =
6557 EXPECT_TRUE(test_info == NULL)
6565 const TestInfo* test_info =
6567 ASSERT_TRUE(NULL != test_info)
6569 EXPECT_STREQ("CurrentTestInfoTest", test_info->test_case_name())
6571 EXPECT_STREQ("WorksForFirstTestInATestCase", test_info->name())
6580 const TestInfo* test_info =
6582 ASSERT_TRUE(NULL != test_info)
6584 EXPECT_STREQ("CurrentTestInfoTest", test_info->test_case_name())
6586 EXPECT_STREQ("WorksForSecondTestInATestCase", test_info->name())