Lines Matching refs:test_info
60 virtual void OnTestStart(const TestInfo& test_info) { in OnTestStart() argument
62 test_info.test_case_name(), test_info.name()); in OnTestStart()
80 virtual void OnTestEnd(const TestInfo& test_info) { in OnTestEnd() argument
81 const char * result = test_info.result()->Passed() ? in OnTestEnd()
85 result, test_info.test_case_name(), test_info.name(), in OnTestEnd()
86 test_info.result()->elapsed_time()); in OnTestEnd()
126 virtual void OnTestStart(const TestInfo& test_info) { in OnTestStart() argument
127 LOGI("[ RUN ] %s.%s\n", test_info.test_case_name(), in OnTestStart()
128 test_info.name()); in OnTestStart()
141 virtual void OnTestEnd(const TestInfo& test_info) { in OnTestEnd() argument
142 const char * result = test_info.result()->Passed() ? in OnTestEnd()
145 LOGI("%s%s.%s (%lli ms)\n", result, test_info.test_case_name(), in OnTestEnd()
146 test_info.name(), test_info.result()->elapsed_time()); in OnTestEnd()
175 const TestInfo& test_info = *test_case.GetTestInfo(j); in PrintFailedTests() local
176 if (!test_info.should_run() || test_info.result()->Passed()) { in PrintFailedTests()
180 test_info.name()); in PrintFailedTests()