Sets the global test part result reporter.
| 2200 | |
| 2201 | // Sets the global test part result reporter. |
| 2202 | void UnitTestImpl::SetGlobalTestPartResultReporter( |
| 2203 | TestPartResultReporterInterface* reporter) { |
| 2204 | internal::MutexLock lock(&global_test_part_result_reporter_mutex_); |
| 2205 | global_test_part_result_repoter_ = reporter; |
| 2206 | } |
| 2207 | |
| 2208 | // Returns the test part result reporter for the current thread. |
| 2209 | TestPartResultReporterInterface* |
no outgoing calls
no test coverage detected