Sets the global test part result reporter.
| 2214 | |
| 2215 | // Sets the global test part result reporter. |
| 2216 | void UnitTestImpl::SetGlobalTestPartResultReporter( |
| 2217 | TestPartResultReporterInterface* reporter) { |
| 2218 | internal::MutexLock lock(&global_test_part_result_reporter_mutex_); |
| 2219 | global_test_part_result_repoter_ = reporter; |
| 2220 | } |
| 2221 | |
| 2222 | // Returns the test part result reporter for the current thread. |
| 2223 | TestPartResultReporterInterface* |
no outgoing calls
no test coverage detected