summaryrefslogtreecommitdiffstats
path: root/third_party/ocmock/OCMock/NSNotificationCenter+OCMAdditions.m
blob: 68bc0bec3ee81c44b2c87bdeda62fee11e2e4658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//---------------------------------------------------------------------------------------
//  $Id: NSNotificationCenter+OCMAdditions.m$
//  Copyright (c) 2009 by Mulle Kybernetik. See License file for details.
//---------------------------------------------------------------------------------------

#import "NSNotificationCenter+OCMAdditions.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