12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
-
-
- #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)beginRejectMacro;
- + (OCMStubRecorder *)endRejectMacro;
-
- + (void)beginVerifyMacroAtLocation:(OCMLocation *)aLocation;
- + (void)endVerifyMacro;
-
- + (OCMMacroState *)globalState;
-
- - (OCMRecorder *)recorder;
-
- - (void)switchToClassMethod;
-
- @end
|