123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #import <Foundation/Foundation.h>
- @class OCMLocation;
- @class OCMRecorder;
- @class OCMStubRecorder;
- @class OCMockObject;
- @interface OCMMacroState : NSObject
- {
- OCMRecorder *recorder;
- }
- + (void)beginStubMacro;
- + (OCMStubRecorder *)endStubMacro;
- + (void)beginExpectMacro;
- + (OCMStubRecorder *)endExpectMacro;
- + (void)beginVerifyMacroAtLocation:(OCMLocation *)aLocation;
- + (void)endVerifyMacro;
- + (OCMMacroState *)globalState;
- - (OCMRecorder *)recorder;
- - (void)switchToClassMethod;
- @end
|