| 303 | } |
| 304 | |
| 305 | void MockSupport::checkExpectationsOfLastActualCall() |
| 306 | { |
| 307 | if(lastActualFunctionCall_) |
| 308 | lastActualFunctionCall_->checkExpectations(); |
| 309 | |
| 310 | for(MockNamedValueListNode *p = data_.begin();p;p = p->next()) |
| 311 | if(getMockSupport(p) && getMockSupport(p)->lastActualFunctionCall_) |
| 312 | getMockSupport(p)->lastActualFunctionCall_->checkExpectations(); |
| 313 | } |
| 314 | |
| 315 | bool MockSupport::hasCallsOutOfOrder() |
| 316 | { |
nothing calls this directly
no test coverage detected