blob: 3dd4a936a4f609bfe7df23a0a68603ea76299684 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//---------------------------------------------------------------------------------------
// $Id: $
// Copyright (c) 2009 by Mulle Kybernetik. See License file for details.
//---------------------------------------------------------------------------------------
#import "OCPartialMockObject.h"
#import "OCPartialMockRecorder.h"
@implementation OCPartialMockRecorder
- (void)forwardInvocation:(NSInvocation *)anInvocation
{
[super forwardInvocation:anInvocation];
// not as clean as I'd wish...
[(OCPartialMockObject *)signatureResolver setupForwarderForSelector:[anInvocation selector]];
}
@end
|