I am using GHUnit & OCMock to do some testing work in my iOS app.

So I have some trouble integrating them.

The following code works well.

NSString *s = [NSString stringWithString:@"122"];
id mock = [OCMockObject partialMockForObject:s];
[[[mock stub] andReturn:@"255"] capitalizedString];
NSString *returnValue = [mock capitalizedString];
GHAssertEqualObjects(returnValue, @"255", @"Should be equal");
[mock verify];

But when I change [[[mock stub] andReturn:@"255"] capitalizedString]; into

[[[mock stub] andDo:^(NSInvocation *invocation) {
    [invocation setReturnValue:@"255"];
}] capitalizedString];

I got an error which says "Reason: 'NSCFString' should be equal to '255'. Should be equal"

I think the two statements should do exactly the same thing. Am I wrong?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

setReturnValue: expects a pointer to the return value, so your block should be:

void (^theBlock)(NSInvocation *) = ^(NSInvocation *invocation) {
    NSString *capitalizedString = @"255";
    [invocation setReturnValue:&capitalizedString];
};
link|improve this answer
You explanation is clearer than Apple's doc! – leafduo Mar 28 '11 at 8:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.