Lines Matching refs:TestResult
398 // TestResult is not copyable.
399 class GTEST_API_ TestResult {
401 // Creates an empty TestResult.
402 TestResult();
404 // D'tor. Do not inherit from TestResult.
405 ~TestResult();
517 // We disallow copying TestResult.
518 TestResult(const TestResult&) = delete;
519 TestResult& operator=(const TestResult&) = delete;
520 }; // class TestResult
599 const TestResult* result() const { return &result_; }
663 TestResult result_;
749 // Returns the TestResult that holds test properties recorded during
751 const TestResult& ad_hoc_test_result() const { return ad_hoc_test_result_; }
872 TestResult ad_hoc_test_result_;
1224 // Returns the TestResult containing information on test failures and
1226 const TestResult& ad_hoc_test_result() const;
1244 // Adds a TestPartResult to the current TestResult object. All
1254 // Adds a TestProperty to the current TestResult object when invoked from