| 430 | } |
| 431 | |
| 432 | SimpleString MockCheckedExpectedCall::missingParametersToString() |
| 433 | { |
| 434 | SimpleString str; |
| 435 | MockNamedValueListNode* p; |
| 436 | |
| 437 | for (p = inputParameters_->begin(); p; p = p->next()) { |
| 438 | if (! item(p)->isMatchingActualCall()) { |
| 439 | if (str != "") str += ", "; |
| 440 | str += StringFromFormat("%s %s", p->getType().asCharString(), p->getName().asCharString()); |
| 441 | } |
| 442 | } |
| 443 | for (p = outputParameters_->begin(); p; p = p->next()) { |
| 444 | if (! item(p)->isMatchingActualCall()) { |
| 445 | if (str != "") str += ", "; |
| 446 | str += StringFromFormat("%s %s", p->getType().asCharString(), p->getName().asCharString()); |
| 447 | } |
| 448 | } |
| 449 | return str; |
| 450 | } |
| 451 | |
| 452 | bool MockCheckedExpectedCall::relatesTo(const SimpleString& functionName) |
| 453 | { |
no test coverage detected