Created
February 12, 2012 20:53
-
-
Save b-adams/1810802 to your computer and use it in GitHub Desktop.
Smart stub notification
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// TODO: Implement method | |
#warning Method still a stub | |
-(double) congratulate:(NSString*)whom manyTimes:(int)n | |
{ | |
NSLog(@"\n\tStatus=<%@> Class=<%@> Selector=<%@>", @"Stub", NSStringFromClass([self class]), NSStringFromSelector(_cmd)); | |
return NAN; | |
} | |
// TODO: Implement method | |
#warning Method still a stub | |
-(NSString*) barbaricYawp | |
{ | |
NSLog(@"\n\tStatus=<%@> Class=<%@> Selector=<%@>", @"Stub", NSStringFromClass([self class]), NSStringFromSelector(_cmd)); | |
return nil; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment