123456789101112131415161718192021222324252627282930 |
- #import "OCMInvocationStub.h"
- @interface OCMInvocationExpectation : OCMInvocationStub
- {
- BOOL matchAndReject;
- BOOL isSatisfied;
- }
- - (void)setMatchAndReject:(BOOL)flag;
- - (BOOL)isMatchAndReject;
- - (BOOL)isSatisfied;
- @end
|