| 337 | } |
| 338 | |
| 339 | void MockCheckedExpectedCall::resetActualCallMatchingState() |
| 340 | { |
| 341 | wasPassedToObject_ = !isSpecificObjectExpected_; |
| 342 | isActualCallMatchFinalized_ = false; |
| 343 | |
| 344 | MockNamedValueListNode* p; |
| 345 | |
| 346 | for (p = inputParameters_->begin(); p; p = p->next()) |
| 347 | item(p)->setMatchesActualCall(false); |
| 348 | for (p = outputParameters_->begin(); p; p = p->next()) |
| 349 | item(p)->setMatchesActualCall(false); |
| 350 | } |
| 351 | |
| 352 | void MockCheckedExpectedCall::inputParameterWasPassed(const SimpleString& name) |
| 353 | { |
no test coverage detected