I am trying to mockj a segmented control and I am getting crashes, any suggestions?

NSInteger selectedSegment = 2;
id segmentedControlMock = [OCMockObject niceMockForClass:[UISegmentedControl class]];
[[[segmentedControlMock stub] andReturn:OCMOCK_VALUE(selectedSegment)] selectedSegmentIndex];

I get a crash as soon as i call selectedSegmentIndex on my mock object:

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Expected invocation with object return type.'

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You need to use andReturnValue:

NSInteger selectedSegment = 2;
id segmentedControlMock = [OCMockObject niceMockForClass:[UISegmentedControl class]];
[[[segmentedControlMock stub] andReturnValue:OCMOCK_VALUE(selectedSegment)] selectedSegmentIndex];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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