Is it possible to use NSInvocation for static method calls?
We're using NSInvocation to simplify our method calls in unit tests for non-public methods.
This works great for our instance methods, for which we provide an object and appropriate data to NSInvocation. However, can we do the same with static methods?