| 266 | } |
| 267 | |
| 268 | void MockSupport::failTestWithExpectedCallsNotFulfilled() |
| 269 | { |
| 270 | MockExpectedCallsList expectationsList; |
| 271 | expectationsList.addExpectations(expectations_); |
| 272 | |
| 273 | for(MockNamedValueListNode *p = data_.begin();p;p = p->next()) |
| 274 | if(getMockSupport(p)) |
| 275 | expectationsList.addExpectations(getMockSupport(p)->expectations_); |
| 276 | |
| 277 | MockExpectedCallsDidntHappenFailure failure(activeReporter_->getTestToFail(), expectationsList); |
| 278 | failTest(failure); |
| 279 | } |
| 280 | |
| 281 | void MockSupport::failTestWithOutOfOrderCalls() |
| 282 | { |
nothing calls this directly
no test coverage detected