I need to be able to determine whether a class method was called or not. How can I do this with OCMock?
feedback
|
|
One approach is to wrap the class method in a method on your own class. So let's say your class has to call
Then in your test, you create a partial mock and expect
If you want to verify that
The excpetion will cause the test to fail if | |||
|
feedback
|
|
Quoting the Features tab of the official site:
EDIT Oh damn, I missed the class method part. Well, I'm on a Windows machine at the moment so I can't confirm this, but class objects are instances of metaclasses, so you should get away by using the
Then proceeding as you would normally for a mock object. | ||||
feedback
|