I have some simple mock objects with some stubs and expectations set up. When I run my tests on the iOS 4.3 simulator, everything passes. When I run on iOS 5, I get "unexpected method invoked" failures. As an example case, I have a method - (void) foo: (NSString *) bar that I set up an expectation for and then run. The result is

unexpected method invoked: foo:@"foobar" 
                 expected: foo:@"foobar"

Any one know why this is happening, or how to fix it? The tests themselves are perfectly fine, and have been working for months in iOS 4.

link|improve this question

69% accept rate
1  
I reported this a while back at mulle-kybernetik.com/forum/…. It doesn't seem like any progress has been made. – Christopher Pickslay Oct 28 '11 at 17:49
feedback

2 Answers

up vote 0 down vote accepted

I'm using the latest version of OCMock from Github on iOS 5 without any problems. There have been some recent additions to this repository, so it's quite possible that the problems you're experiencing have been fixed in the latest version.

link|improve this answer
I compiled all the latest OCMock code from source directly in my project, and this fixed the issue. – Micah Hainline Nov 30 '11 at 15:34
feedback

Sorry only saw this now. It has been fixed for a while

https://github.com/erikdoe/ocmock/commit/db6f27041efc507ae6ab92721e2f7bbbbd14c28b

Update: The newly released version 2.0 of OCMock contains this fix. So, you don't have to build from source if you don't want to.

link|improve this answer
I do appreciate you responding Erik. Thanks for clarifying the issue. – Micah Hainline Feb 10 at 21:25
feedback

Your Answer

 
or
required, but never shown

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