• Home
  • Raw
  • Download

Lines Matching refs:TestInfo

174 class TestInfo;  variable
349 friend class TestInfo;
541 friend class TestInfo;
621 class GTEST_API_ TestInfo {
625 ~TestInfo();
686 friend TestInfo* internal::MakeAndRegisterTestInfo(
698 TestInfo(const std::string& test_case_name,
715 static void ClearTestResult(TestInfo* test_info) { in ClearTestResult()
740 GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfo);
813 const TestInfo* GetTestInfo(int i) const;
824 std::vector<TestInfo*>& test_info_list() { return test_info_list_; } in test_info_list()
827 const std::vector<TestInfo*>& test_info_list() const { in test_info_list()
833 TestInfo* GetMutableTestInfo(int i);
840 void AddTestInfo(TestInfo * test_info);
862 static bool TestPassed(const TestInfo* test_info) { in TestPassed()
867 static bool TestFailed(const TestInfo* test_info) { in TestFailed()
873 static bool TestReportableDisabled(const TestInfo* test_info) { in TestReportableDisabled()
878 static bool TestDisabled(const TestInfo* test_info) { in TestDisabled()
883 static bool TestReportable(const TestInfo* test_info) { in TestReportable()
888 static bool ShouldRunTest(const TestInfo* test_info) { in ShouldRunTest()
905 std::vector<TestInfo*> test_info_list_;
982 virtual void OnTestStart(const TestInfo& test_info) = 0;
988 virtual void OnTestEnd(const TestInfo& test_info) = 0;
1020 virtual void OnTestStart(const TestInfo& /*test_info*/) {} in OnTestStart() argument
1022 virtual void OnTestEnd(const TestInfo& /*test_info*/) {} in OnTestEnd() argument
1069 friend class TestInfo; variable
1145 const TestInfo* current_test_info() const