Lines Matching refs:test_info
715 static void ClearTestResult(TestInfo* test_info) { in ClearTestResult() argument
716 test_info->result_.Clear(); in ClearTestResult()
840 void AddTestInfo(TestInfo * test_info);
862 static bool TestPassed(const TestInfo* test_info) { in TestPassed() argument
863 return test_info->should_run() && test_info->result()->Passed(); in TestPassed()
867 static bool TestFailed(const TestInfo* test_info) { in TestFailed() argument
868 return test_info->should_run() && test_info->result()->Failed(); in TestFailed()
873 static bool TestReportableDisabled(const TestInfo* test_info) { in TestReportableDisabled() argument
874 return test_info->is_reportable() && test_info->is_disabled_; in TestReportableDisabled()
878 static bool TestDisabled(const TestInfo* test_info) { in TestDisabled() argument
879 return test_info->is_disabled_; in TestDisabled()
883 static bool TestReportable(const TestInfo* test_info) { in TestReportable() argument
884 return test_info->is_reportable(); in TestReportable()
888 static bool ShouldRunTest(const TestInfo* test_info) { in ShouldRunTest() argument
889 return test_info->should_run(); in ShouldRunTest()
982 virtual void OnTestStart(const TestInfo& test_info) = 0;
988 virtual void OnTestEnd(const TestInfo& test_info) = 0;