| 93 | } |
| 94 | |
| 95 | bool MockExpectedCallsList::hasUnfulfilledExpectations() const |
| 96 | { |
| 97 | for (MockExpectedCallsListNode* p = head_; p; p = p->next_) { |
| 98 | if (!p->expectedCall_->isFulfilled()) { |
| 99 | return true; |
| 100 | } |
| 101 | } |
| 102 | return false; |
| 103 | } |
| 104 | |
| 105 | bool MockExpectedCallsList::hasExpectationWithName(const SimpleString& name) const |
| 106 | { |