Skip to content

Instantly share code, notes, and snippets.

@ScottPetit
Created January 31, 2014 15:38
Show Gist options
  • Save ScottPetit/8734403 to your computer and use it in GitHub Desktop.
Save ScottPetit/8734403 to your computer and use it in GitHub Desktop.
@interface NSObject (SPYTest)
- (void)shouldEqualObject:(id)object;
@end
@implementation NSObject (SPYTest)
- (void)shouldEqualObject:(id)object
{
XCTAssertEqualObjects(self, object, @"");
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment