summaryrefslogtreecommitdiffstats
path: root/third_party/ocmock/OCMock/NSNotificationCenter+OCMAdditions.m
blob: 117deb06fbe34fcdde0360b0a581b7082a72fd5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//---------------------------------------------------------------------------------------
//  $Id: NSNotificationCenter+OCMAdditions.m 57 2010-07-19 06:14:27Z erik $
//  Copyright (c) 2009 by Mulle Kybernetik. See License file for details.
//---------------------------------------------------------------------------------------

#import "NSNotificationCenter+OCMAdditions.h"
#import "OCObserverMockObject.h"


@implementation NSNotificationCenter(OCMAdditions)

- (void)addMockObserver:(OCMockObserver *)notificationObserver name:(NSString *)notificationName object:(id)notificationSender
{
	[self addObserver:notificationObserver selector:@selector(handleNotification:) name:notificationName object:notificationSender];
}

@end