| 50 | } |
| 51 | |
| 52 | MockCheckedActualCall::MockCheckedActualCall(unsigned int callOrder, MockFailureReporter* reporter, const MockExpectedCallsList& allExpectations) |
| 53 | : callOrder_(callOrder), reporter_(reporter), state_(CALL_SUCCEED), expectationsChecked_(false), matchingExpectation_(NULLPTR), |
| 54 | allExpectations_(allExpectations), outputParameterExpectations_(NULLPTR) |
| 55 | { |
| 56 | potentiallyMatchingExpectations_.addPotentiallyMatchingExpectations(allExpectations); |
| 57 | } |
| 58 | |
| 59 | MockCheckedActualCall::~MockCheckedActualCall() |
| 60 | { |
nothing calls this directly
no test coverage detected