The destructor of SingleFailureChecker verifies that the given TestPartResultArray contains exactly one failure that has the given type and contains the given substring. If that's not the case, a non-fatal failure will be generated.
| 2185 | // type and contains the given substring. If that's not the case, a |
| 2186 | // non-fatal failure will be generated. |
| 2187 | SingleFailureChecker::~SingleFailureChecker() { |
| 2188 | EXPECT_PRED_FORMAT3(HasOneFailure, *results_, type_, substr_); |
| 2189 | } |
| 2190 | |
| 2191 | DefaultGlobalTestPartResultReporter::DefaultGlobalTestPartResultReporter( |
| 2192 | UnitTestImpl* unit_test) : unit_test_(unit_test) {} |
nothing calls this directly
no outgoing calls
no test coverage detected