12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #import <Foundation/Foundation.h>
- @class OCMLocation;
- @interface OCObserverMockObject : NSObject
- {
- BOOL expectationOrderMatters;
- NSMutableArray *recorders;
- NSMutableArray *centers;
- }
- - (void)setExpectationOrderMatters:(BOOL)flag;
- - (id)expect;
- - (void)verify;
- - (void)verifyAtLocation:(OCMLocation *)location;
- - (void)handleNotification:(NSNotification *)aNotification;
- - (void)autoRemoveFromCenter:(NSNotificationCenter *)aCenter;
- - (void)notificationWithName:(NSString *)name object:(id)sender;
- @end
|