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.cc840 ::testing::UnitTest::GetInstance()->current_test_info(); in TEST_P()
861 ::testing::UnitTest::GetInstance()->current_test_info(); in TEST_P()
875 ::testing::UnitTest::GetInstance()->current_test_info(); in TEST_F()
983 ::testing::UnitTest::GetInstance()->current_test_info(); in TEST_P()
1008 ::testing::UnitTest::GetInstance()->current_test_info(); in TEST_P()
1038 ::testing::UnitTest::GetInstance()->current_test_info(); in TEST_P()
1066 ::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()
5298 const TestInfo* const test_info = GetUnitTestImpl()->current_test_info(); \
6356 const TestInfo* test_info = UnitTest::GetInstance()->current_test_info(); in SetUpTestSuite()
6364 const TestInfo* test_info = UnitTest::GetInstance()->current_test_info(); in TearDownTestSuite()
6373 const TestInfo* test_info = UnitTest::GetInstance()->current_test_info(); in TEST_F()
6387 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.cc2540 const TestInfo* const this_test_info = impl->current_test_info(); in HasSameFixtureClass()
5580 const TestInfo* UnitTest::current_test_info() const in current_test_info() function in testing::UnitTest
5583 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.md816 ##### current_test_info {#UnitTest::current_test_info}
818 `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.md1666 `current_test_info()` on the [`UnitTest`](reference/testing.md#UnitTest)
1673 testing::UnitTest::GetInstance()->current_test_info();
1680 `current_test_info()` returns a null pointer if no test is running. In