I have a class that suppose to return a string when a method gets called. How can i create a mock object.

I want mock to return @"Hello" when the method "sayHello" get's called

id mock = [OCMockObject mockForClass:[MyCrazyClass class]];
link|improve this question

feedback

1 Answer

up vote 4 down vote accepted
[[[mock stub] andReturn:@"Hello"] yourMethod:someArgument];
link|improve this answer
I get the following warning "No -andReturn: method found" – aryaxt Mar 30 '11 at 22:32
#import <OCMock/OCMock.h> I had to import this – aryaxt Mar 30 '11 at 23:35
feedback

Your Answer

 
or
required, but never shown

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