summaryrefslogtreecommitdiffstats
path: root/third_party/ocmock/OCObserverMockObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/ocmock/OCObserverMockObject.h')
-rw-r--r--third_party/ocmock/OCObserverMockObject.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/third_party/ocmock/OCObserverMockObject.h b/third_party/ocmock/OCObserverMockObject.h
new file mode 100644
index 0000000..2e4398b
--- /dev/null
+++ b/third_party/ocmock/OCObserverMockObject.h
@@ -0,0 +1,20 @@
+//---------------------------------------------------------------------------------------
+// $Id$
+// Copyright (c) 2009 by Mulle Kybernetik. See License file for details.
+//---------------------------------------------------------------------------------------
+
+#import <Foundation/Foundation.h>
+
+@interface OCObserverMockObject : NSObject
+{
+ BOOL expectationOrderMatters;
+ NSMutableArray *recorders;
+}
+
+- (void)setExpectationOrderMatters:(BOOL)flag;
+
+- (id)expect;
+
+- (void)verify;
+
+@end