Sets the test part result reporter for the current thread.
| 2184 | |
| 2185 | // Sets the test part result reporter for the current thread. |
| 2186 | void UnitTestImpl::SetTestPartResultReporterForCurrentThread( |
| 2187 | TestPartResultReporterInterface* reporter) { |
| 2188 | per_thread_test_part_result_reporter_.set(reporter); |
| 2189 | } |
| 2190 | |
| 2191 | // Gets the number of successful test cases. |
| 2192 | int UnitTestImpl::successful_test_case_count() const { |
no test coverage detected