Home | History | Annotate | Download | only in src

Lines Matching defs:TestResult

513 // TestResult is not copyable.
514 class TestResult {
516 // Creates an empty TestResult.
517 TestResult();
519 // D'tor. Do not inherit from TestResult.
520 ~TestResult();
594 // We disallow copying TestResult.
595 GTEST_DISALLOW_COPY_AND_ASSIGN_(TestResult);
596 }; // class TestResult
634 internal::TestResult* result() { return &result_; }
635 const internal::TestResult* result() const { return &result_; }
669 internal::TestResult result_;
1017 // Returns the TestResult for the test that's currently running, or
1018 // the TestResult for the ad hoc test if no test is running.
1019 internal::TestResult* current_test_result();
1021 // Returns the TestResult for the ad hoc test.
1022 const internal::TestResult* ad_hoc_test_result() const {
1267 internal::TestResult ad_hoc_test_result_;