Sets the test part result reporter for the current thread.
| 719 | |
| 720 | // Sets the test part result reporter for the current thread. |
| 721 | void UnitTestImpl::SetTestPartResultReporterForCurrentThread( |
| 722 | TestPartResultReporterInterface* reporter) { |
| 723 | per_thread_test_part_result_reporter_.set(reporter); |
| 724 | } |
| 725 | |
| 726 | // Gets the number of successful test cases. |
| 727 | int UnitTestImpl::successful_test_case_count() const { |
no test coverage detected