| 233 | } |
| 234 | |
| 235 | MockExpectedObjectDidntHappenFailure::MockExpectedObjectDidntHappenFailure(UtestShell* test, const SimpleString& functionName, const MockExpectedCallsList& expectations) : MockFailure(test) |
| 236 | { |
| 237 | message_ = StringFromFormat("Mock Failure: Expected call on object for function \"%s\" but it did not happen.\n", functionName.asCharString()); |
| 238 | addExpectationsAndCallHistoryRelatedTo(functionName, expectations); |
| 239 | } |
| 240 | |
| 241 |
nothing calls this directly
no test coverage detected