| 51 | } |
| 52 | |
| 53 | unsigned int MockExpectedCallsList::size() const |
| 54 | { |
| 55 | unsigned int count = 0; |
| 56 | for (MockExpectedCallsListNode* p = head_; p; p = p->next_) |
| 57 | count++; |
| 58 | return count; |
| 59 | } |
| 60 | |
| 61 | bool MockExpectedCallsList::isEmpty() const |
| 62 | { |
no outgoing calls
no test coverage detected