blob: b27c938e59385e668746f6a820393fa794c68f50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//---------------------------------------------------------------------------------------
// $Id: $
// Copyright (c) 2009 by Mulle Kybernetik. See License file for details.
//---------------------------------------------------------------------------------------
#import "OCClassMockObject.h"
@interface OCPartialMockObject : OCClassMockObject
{
NSObject *realObject;
}
- (id)initWithObject:(NSObject *)anObject;
- (NSObject *)realObject;
- (void)setupSubclassForObject:(id)anObject;
- (void)setupForwarderForSelector:(SEL)selector;
@end
|