Sets the test part result reporter for the current thread.
| 2213 | |
| 2214 | // Sets the test part result reporter for the current thread. |
| 2215 | void UnitTestImpl::SetTestPartResultReporterForCurrentThread( |
| 2216 | TestPartResultReporterInterface* reporter) { |
| 2217 | per_thread_test_part_result_reporter_.set(reporter); |
| 2218 | } |
| 2219 | |
| 2220 | // Gets the number of successful test cases. |
| 2221 | int UnitTestImpl::successful_test_case_count() const { |
no test coverage detected