Sets the test part result reporter for the current thread.
| 2227 | |
| 2228 | // Sets the test part result reporter for the current thread. |
| 2229 | void UnitTestImpl::SetTestPartResultReporterForCurrentThread( |
| 2230 | TestPartResultReporterInterface* reporter) { |
| 2231 | per_thread_test_part_result_reporter_.set(reporter); |
| 2232 | } |
| 2233 | |
| 2234 | // Gets the number of successful test suites. |
| 2235 | int UnitTestImpl::successful_test_suite_count() const { |
no test coverage detected