| 116 | } |
| 117 | |
| 118 | MockCallOrderFailure::MockCallOrderFailure(UtestShell* test, const MockExpectedCallsList& expectations) : MockFailure(test) |
| 119 | { |
| 120 | MockExpectedCallsList expectationsForOutOfOrder; |
| 121 | expectationsForOutOfOrder.addExpectations(expectations); |
| 122 | expectationsForOutOfOrder.onlyKeepOutOfOrderExpectations(); |
| 123 | |
| 124 | message_ = "Mock Failure: Out of order calls"; |
| 125 | message_ += "\n"; |
| 126 | addExpectationsAndCallHistory(expectationsForOutOfOrder); |
| 127 | } |
| 128 | |
| 129 | MockUnexpectedInputParameterFailure::MockUnexpectedInputParameterFailure(UtestShell* test, const SimpleString& functionName, const MockNamedValue& parameter, const MockExpectedCallsList& expectations) : MockFailure(test) |
| 130 | { |
nothing calls this directly
no test coverage detected