The c'tor sets this object as the test part result reporter used by Google Test. The 'result' parameter specifies where to report the results. Intercepts only failures from the current thread.
| 2069 | // Google Test. The 'result' parameter specifies where to report the |
| 2070 | // results. Intercepts only failures from the current thread. |
| 2071 | ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter( |
| 2072 | TestPartResultArray* result) |
| 2073 | : intercept_mode_(INTERCEPT_ONLY_CURRENT_THREAD), |
| 2074 | result_(result) { |
| 2075 | Init(); |
| 2076 | } |
| 2077 | |
| 2078 | // The c'tor sets this object as the test part result reporter used by |
| 2079 | // Google Test. The 'result' parameter specifies where to report the |
nothing calls this directly
no outgoing calls
no test coverage detected