I need to be able to determine whether a class method was called or not. How can I do this with OCMock?

link|improve this question

You may want to look into this: stackoverflow.com/questions/1810053/… – zneak Apr 8 '11 at 22:39
feedback

2 Answers

One approach is to wrap the class method in a method on your own class. So let's say your class has to call [SomeOtherClass classMethod:someString]. You could create a method invokeClassMethod: on your class like this:

-(NSString *)invokeClassMethod:(NSString *)someString {
    return [SomeOtherClass classMethod:someString];
}

Then in your test, you create a partial mock and expect invokeClassMethod:

-(void)testSomething {
    id partialMock = [OCMockObject partialMockForObject:actual];
    [[[partialMock expect] andReturn:@"foo"] invokeClassMethod:@"bar"];

    [actual doSomething:@"bar"];

    [partialMock verify];
}

If you want to verify that invokeClassMethod isn't called, you can throw an exception:

-(void)testSomethingElse {
    id partialMock = [OCMockObject partialMockForObject:actual];
    [[[partialMock stub] andThrow:[NSException exceptionWithName:@"foo" reason:@"Should not have called invokeClassMethod:" userInfo:nil] invokeClassMethod:OCMOCK_ANY];

    [actual doSomething:@"bar"];
}

The excpetion will cause the test to fail if invokeClassMethod is called.

link|improve this answer
feedback

Quoting the Features tab of the official site:

Expectations and verification

[[mock expect] someMethod:someArgument]

Tells the mock object that someMethod: should be called with an argument that is equal to someArgument. After this setup the functionality under test should be invoked followed by

[mock verify]

The verify method will raise an exception if the expected method has not been invoked.

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 class method on the class object:

id mockClass = [OCMockObject mockForClass:[[SomeClass class] class]];

Then proceeding as you would normally for a mock object.

link|improve this answer
Doesn't seem to work. Crashes when i tell it to expect a class method call, I get a DoesNotRecognizeSelector error. – aryaxt Apr 8 '11 at 20:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.