At my day job I\'ve been spoiled with Mockito\'s never() verification, which can confirm that a mock method is never called.
Is there some way to accomplish the same thi
To make sure your method not called, I think we have to do an assert before the testMethod called. So make sure put OCMReject before you run the test method to listen which method will trigger when runs testMethod:
testMethod
OCMReject
OCMReject([mock someMethod]); [mock testMethod];