Skip to content

Instantly share code, notes, and snippets.

@justinwyer
Last active December 12, 2015 09:18
Show Gist options
  • Save justinwyer/4750102 to your computer and use it in GitHub Desktop.
Save justinwyer/4750102 to your computer and use it in GitHub Desktop.
TDD examples for blog
@implementation CardTest
- (void)testShouldKnowCardCannotMatchEmptyCardList {
Card *card = [Card new];
NSArray *otherCards = [NSArray new];
STAssertEquals(0, [card match:otherCards], @"Should not match empty card list.");
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment