| 43 | } |
| 44 | |
| 45 | bool MockExpectedCallsList::hasCallsOutOfOrder() const |
| 46 | { |
| 47 | for (MockExpectedCallsListNode* p = head_; p; p = p->next_) |
| 48 | if (p->expectedCall_->isOutOfOrder()) |
| 49 | return true; |
| 50 | return false; |
| 51 | } |
| 52 | |
| 53 | unsigned int MockExpectedCallsList::size() const |
| 54 | { |
nothing calls this directly
no test coverage detected