| 126 | } |
| 127 | |
| 128 | void MockCheckedActualCall::discardCurrentlyMatchingExpectations() |
| 129 | { |
| 130 | if (matchingExpectation_) |
| 131 | { |
| 132 | matchingExpectation_->resetActualCallMatchingState(); |
| 133 | matchingExpectation_ = NULLPTR; |
| 134 | } |
| 135 | potentiallyMatchingExpectations_.onlyKeepUnmatchingExpectations(); |
| 136 | } |
| 137 | |
| 138 | MockActualCall& MockCheckedActualCall::withName(const SimpleString& name) |
| 139 | { |
nothing calls this directly
no test coverage detected