I have a class method with a completion block being called in the method under test. So I want to stub this method and call
[[[mock stub] loadImageForRelativeFilePath:[OCMArg any] completionBlock:[OCMArg any]] andDo:^(NSInvocation *invocation)
but I am getting compilation error that no instance method for selector.
Any alternative or any issue with way of access ?