Index: third_party/ocmock/OCMock/OCMockRecorder.h |
diff --git a/third_party/ocmock/OCMock/OCMockRecorder.h b/third_party/ocmock/OCMock/OCMockRecorder.h |
deleted file mode 100644 |
index b11a25387f3a3f8839fb0fcde1b06ad850c7b8fb..0000000000000000000000000000000000000000 |
--- a/third_party/ocmock/OCMock/OCMockRecorder.h |
+++ /dev/null |
@@ -1,32 +0,0 @@ |
-//--------------------------------------------------------------------------------------- |
-// $Id$ |
-// Copyright (c) 2004-2010 by Mulle Kybernetik. See License file for details. |
-//--------------------------------------------------------------------------------------- |
- |
-#import <Foundation/Foundation.h> |
- |
-@interface OCMockRecorder : NSProxy |
-{ |
- id signatureResolver; |
- NSInvocation *recordedInvocation; |
- NSMutableArray *invocationHandlers; |
-} |
- |
-- (id)initWithSignatureResolver:(id)anObject; |
- |
-- (BOOL)matchesInvocation:(NSInvocation *)anInvocation; |
-- (void)releaseInvocation; |
- |
-- (id)andReturn:(id)anObject; |
-- (id)andReturnValue:(NSValue *)aValue; |
-- (id)andThrow:(NSException *)anException; |
-- (id)andPost:(NSNotification *)aNotification; |
-- (id)andCall:(SEL)selector onObject:(id)anObject; |
-#if NS_BLOCKS_AVAILABLE |
-- (id)andDo:(void (^)(NSInvocation *))block; |
-#endif |
-- (id)andForwardToRealObject; |
- |
-- (NSArray *)invocationHandlers; |
- |
-@end |