Home | History | Annotate | Download | only in googletest

Lines Matching defs:TestInfo

1956   const TestInfo* const first_test_info = test_case->test_info_list()[0];
1961 const TestInfo* const this_test_info = impl->current_test_info();
2184 // class TestInfo
2186 // Constructs a TestInfo object. It assumes ownership of the test factory
2190 TestInfo::TestInfo(const char* a_test_case_name,
2207 // Destructs a TestInfo object.
2208 TestInfo::~TestInfo() { delete factory_; }
2212 // Creates a new TestInfo object and registers it with Google Test;
2227 // The newly created TestInfo instance will assume
2229 TestInfo* MakeAndRegisterTestInfo(
2237 TestInfo* const test_info =
2238 new TestInfo(test_case_name, name, type_param, value_param,
2283 void TestInfo::Run() {
2376 ForEach(test_info_list_, internal::Delete<TestInfo>);
2381 const TestInfo* TestCase::GetTestInfo(int i) const {
2388 TestInfo* TestCase::GetMutableTestInfo(int i) {
2395 void TestCase::AddTestInfo(TestInfo * test_info) {
2430 ForEach(test_info_list_, TestInfo::ClearTestResult);
2638 void PrintFullTestCommentIfPresent(const TestInfo& test_info) {
2671 virtual void OnTestStart(const TestInfo& test_info);
2673 virtual void OnTestEnd(const TestInfo& test_info);
2743 void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) {
2762 void PrettyUnitTestResultPrinter::OnTestEnd(const TestInfo& test_info) {
2814 const TestInfo& test_info = *test_case.GetTestInfo(j);
2886 virtual void OnTestStart(const TestInfo& test_info);
2888 virtual void OnTestEnd(const TestInfo& test_info);
2949 GTEST_REPEATER_METHOD_(OnTestStart, TestInfo)
2954 GTEST_REVERSE_REPEATER_METHOD_(OnTestEnd, TestInfo)
3020 // Streams an XML representation of a TestInfo object.
3023 const TestInfo& test_info);
3158 // <testcase name="test-name"> <-- corresponds to a TestInfo object
3194 // Prints an XML representation of a TestInfo object.
3198 const TestInfo& test_info) {
3353 void OnTestStart(const TestInfo& test_info) {
3357 void OnTestEnd(const TestInfo& test_info) {
3859 // Returns the TestInfo object for the test that's currently running,
3862 const TestInfo* UnitTest::current_test_info() const {
4340 // each TestCase and TestInfo object.
4363 TestInfo* const test_info = test_case->test_info_list()[j];
4405 const TestInfo* const test_info =