Skip to content

Instantly share code, notes, and snippets.

@yuuki1224
Last active August 29, 2015 13:56
Show Gist options
  • Save yuuki1224/9206462 to your computer and use it in GitHub Desktop.
Save yuuki1224/9206462 to your computer and use it in GitHub Desktop.
#import "Kiwi.h"
SPEC_BEGIN(SampleSpec)
describe(@"MeetAppApiManager", ^{
it(@"test case", ^{
Sample *sample = [[Sample alloc] init];
[sample stub:@selector(hoge:) andReturn:@"hoge"];
TestTarget *target = [[TestTarget alloc] init];
target.property = sample; //プロパティに自分で作ったモックを突っ込んでる
[[target targetMethod] should] equal:@"hoge"];
});
});
SPEC_END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment