OCMockito anything() for primitive types
问题 For method signature - (void)insertValue:(NSUInteger)value; I'm trying to see if insertValue for any value never gets called. [verifyCount(test, never()) insertValue:0]; Since compiler complains anything() primitive types, how do I test this? 回答1: It's just like https://stackoverflow.com/a/20524472/246895 [[verifyCount(test, never()) withMatcher:anything()] insertValue:0]; OCMockito does all argument checking using OCHamcrest matchers. Normally, OCMockito turns a primitive argument into an