| 254 | } |
| 255 | |
| 256 | bool MockSupport::wasLastActualCallFulfilled() |
| 257 | { |
| 258 | if (lastActualFunctionCall_ && !lastActualFunctionCall_->isFulfilled()) |
| 259 | return false; |
| 260 | |
| 261 | for (MockNamedValueListNode* p = data_.begin(); p; p = p->next()) |
| 262 | if (getMockSupport(p) && !getMockSupport(p)->wasLastActualCallFulfilled()) |
| 263 | return false; |
| 264 | |
| 265 | return true; |
| 266 | } |
| 267 | |
| 268 | void MockSupport::failTestWithExpectedCallsNotFulfilled() |
| 269 | { |
nothing calls this directly
no test coverage detected