I have an OCMock expectation that goes something like this:

id myValidator = [OCMockObject mockForClass: [MyValidator class]];

[[myValidator expect] validateField: @"value1" 
                             target: testObject
                           selector: @selector(field:isValid:)];

Even when I make the call to validateField:target:selector: in the implementation, the verify of the mock fails. If, however, I replace the selector with NULL both in the implementation and the expectation, then the verify passes. Obviously, NULL isn't what I want to use though. Pretty clearly the problem lies somewhere in the selector. Any idea why this might not be working, or how I can fix it?

link|improve this question

69% accept rate
Could you show the code how you setup the mock object? – Claus Broch Nov 18 '11 at 17:46
Can you post the definition of field:isValid: and the line where you call validateField:target:selector:? – Christopher Pickslay Nov 20 '11 at 5:50
feedback

2 Answers

Edit your "Other Linker Flags" for your test target. Add "-ObjC -all_load". That should take care of it, at least that's what fixed it for my invalid selector problem.

link|improve this answer
My settings already included those flags unfortunately. Anything else you can tell me about your problem and how it was fixed? – Micah Hainline Nov 29 '11 at 19:23
Sure, I wrote a blog post on it: procbits.com/2011/11/29/… – JP Richardson Nov 29 '11 at 20:15
feedback
up vote 0 down vote accepted

I compiled all the OCMock code from source directly in my project, and this fixed the issue. Perhaps not the best solution, but it was at least a solution.

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.