| 497 | } |
| 498 | |
| 499 | long int MockSupport::returnLongIntValueOrDefault(long int defaultValue) |
| 500 | { |
| 501 | if (hasReturnValue()) { |
| 502 | return longIntReturnValue(); |
| 503 | } |
| 504 | return defaultValue; |
| 505 | } |
| 506 | |
| 507 | bool MockSupport::returnBoolValueOrDefault(bool defaultValue) |
| 508 | { |
no outgoing calls