Searched refs:GetTestTypeId (Results 1 - 4 of 4) sorted by relevance

/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h2171 // Note that we call GetTestTypeId() instead of GetTypeId<
2177 // code. GetTestTypeId() is guaranteed to always return the same
2182 ::testing::Test, ::testing::internal::GetTestTypeId())
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h460 GTEST_API_ TypeId GetTestTypeId();
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc617 // from user test code. GetTestTypeId() is guaranteed to always
620 TypeId GetTestTypeId() { function in namespace:testing::internal
624 // The value of GetTestTypeId() as seen from within the Google Test
625 // library. This is solely for testing GetTestTypeId().
626 extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId();
2285 const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId();
2287 const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId();
/gem5/ext/googletest/googletest/test/
H A Dgtest_unittest.cc257 using testing::internal::GetTestTypeId;
373 EXPECT_NE(GetTypeId<int>(), GetTestTypeId());
374 EXPECT_NE(GetTypeId<SubClassOfTest>(), GetTestTypeId());
375 EXPECT_NE(GetTypeId<AnotherSubClassOfTest>(), GetTestTypeId());
379 // Verifies that GetTestTypeId() returns the same value, no matter it
382 EXPECT_EQ(kTestTypeIdInGoogleTest, GetTestTypeId());

Completed in 67 milliseconds