12345678910111213141516171819202122232425262728293031323334353637383940 |
-
-
- #import <Foundation/Foundation.h>
-
- @class OCMockObject;
- @class OCMInvocationMatcher;
-
-
- @interface OCMRecorder : NSProxy
- {
- OCMockObject *mockObject;
- OCMInvocationMatcher *invocationMatcher;
- }
-
- - (instancetype)init;
- - (instancetype)initWithMockObject:(OCMockObject *)aMockObject;
-
- - (void)setMockObject:(OCMockObject *)aMockObject;
-
- - (OCMInvocationMatcher *)invocationMatcher;
-
- - (id)classMethod;
- - (id)ignoringNonObjectArgs;
-
- @end
|