| 413 | } |
| 414 | |
| 415 | MockNamedValue MockCheckedActualCall::returnValue() |
| 416 | { |
| 417 | checkExpectations(); |
| 418 | if (matchingExpectation_) |
| 419 | return matchingExpectation_->returnValue(); |
| 420 | return MockNamedValue("no return value"); |
| 421 | } |
| 422 | |
| 423 | bool MockCheckedActualCall::returnBoolValueOrDefault(bool default_value) |
| 424 | { |
nothing calls this directly
no test coverage detected