Home
last modified time | relevance | path

Searched refs:current_test_info (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/googletest/googletest/test/
H A Dgtest-typed-test_test.cc183 ->current_test_info() in TYPED_TEST()
189 ->current_test_info() in TYPED_TEST()
299 ->current_test_info() in TYPED_TEST_P()
305 ->current_test_info() in TYPED_TEST_P()
402 return testing::UnitTest::GetInstance()->current_test_info()->name(); in GetTestName()
H A Dgtest_stress_test.cc110 const TestInfo* const info = UnitTest::GetInstance()->current_test_info(); in CheckTestFailureCount()
134 const TestInfo* const info = UnitTest::GetInstance()->current_test_info(); in TEST()
H A Dgoogletest-param-test-test.cc910 ::testing::UnitTest::GetInstance()->current_test_info(); in TEST_P()
931 ::testing::UnitTest::GetInstance()->current_test_info(); in TEST_P()
945 ::testing::UnitTest::GetInstance()->current_test_info(); in TEST_F()
1053 ::testing::UnitTest::GetInstance()->current_test_info(); in TEST_P()
1078 ::testing::UnitTest::GetInstance()->current_test_info(); in TEST_P()
1108 ::testing::UnitTest::GetInstance()->current_test_info(); in TEST_P()
1136 ::testing::UnitTest::GetInstance()->current_test_info(); in TEST_P()
H A Dgtest_unittest.cc2019 const TestInfo* test_info = UnitTest::GetInstance()->current_test_info(); in ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTest()
5347 const TestInfo* const test_info = GetUnitTestImpl()->current_test_info(); \
6405 const TestInfo* test_info = UnitTest::GetInstance()->current_test_info(); in SetUpTestSuite()
6413 const TestInfo* test_info = UnitTest::GetInstance()->current_test_info(); in TearDownTestSuite()
6422 const TestInfo* test_info = UnitTest::GetInstance()->current_test_info(); in TEST_F()
6436 const TestInfo* test_info = UnitTest::GetInstance()->current_test_info(); in TEST_F()
/freebsd/contrib/googletest/googletest/src/
H A Dgtest-death-test.cc378 TestInfo* const info = GetUnitTestImpl()->current_test_info(); in DeathTest()
750 const TestInfo* const info = impl->current_test_info(); in AssumeRole()
958 const TestInfo* const info = impl->current_test_info(); in AssumeRole()
1358 const TestInfo* const info = impl->current_test_info(); in AssumeRole()
1415 impl->current_test_info()->increment_death_test_count(); in Create()
H A Dgtest-internal-inl.h757 TestInfo* current_test_info() { return current_test_info_; } in current_test_info() function
758 const TestInfo* current_test_info() const { return current_test_info_; } in current_test_info() function
H A Dgtest.cc2567 const TestInfo* const this_test_info = impl->current_test_info(); in HasSameFixtureClass()
5629 const TestInfo* UnitTest::current_test_info() const in current_test_info() function in testing::UnitTest
5632 return impl_->current_test_info(); in current_test_info()
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock_stress_test.cc208 const TestInfo* const info = UnitTest::GetInstance()->current_test_info(); in TEST()
/freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/tests/
H A Drtsan_test_interceptors.cpp47 ::testing::UnitTest::GetInstance()->current_test_info(); in SetUp()
/freebsd/contrib/googletest/googlemock/src/
H A Dgmock-spec-builders.cc698 UnitTest::GetInstance()->current_test_info(); in RegisterUseByOnCallOrExpectCall()
/freebsd/contrib/googletest/docs/reference/
H A Dtesting.md913 ##### current_test_info {#UnitTest::current_test_info}
915 `const TestInfo* UnitTest::current_test_info() const`
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest.h1143 const TestInfo* current_test_info() const GTEST_LOCK_EXCLUDED_(mutex_);
/freebsd/contrib/googletest/docs/
H A Dadvanced.md1672 `current_test_info()` on the [`UnitTest`](reference/testing.md#UnitTest)
1679 testing::UnitTest::GetInstance()->current_test_info();
1686 `current_test_info()` returns a null pointer if no test is running. In