| 345 | } |
| 346 | |
| 347 | SimpleString MockExpectedCallsList::missingParametersToString() const |
| 348 | { |
| 349 | SimpleString str; |
| 350 | for (MockExpectedCallsListNode* p = head_; p; p = p->next_) |
| 351 | if (! p->expectedCall_->isMatchingActualCall()) |
| 352 | str = appendStringOnANewLine(str, "", p->expectedCall_->missingParametersToString()); |
| 353 | |
| 354 | return stringOrNoneTextWhenEmpty(str, ""); |
| 355 | } |
| 356 | |
| 357 | bool MockExpectedCallsList::hasUnmatchingExpectationsBecauseOfMissingParameters() const |
| 358 | { |
nothing calls this directly
no test coverage detected