blob: 908ad2f32b6b3ffb4ffc4f1e863fecd97f04930e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//---------------------------------------------------------------------------------------
// $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;
- (void)handleNotification:(NSNotification *)aNotification;
@end
|