We always use OCMock in the following way, but it seems doesn't work for some read only property variables, such as NavigationController and so forth, it is read only, set mock one doesn't take effect.

Have you ever experienced this tough issue, how do you solve it? Any idea will be appreciated, thanks in advance you smart guys.

id mockWebView = [OCMockObject mockForClass:[UIWebView class]];
[[mockWebView expect] loadHTMLString:...];
object_setInstanceVariable(viewController, "webView", mockWebView);
link|improve this question

41% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Use a partial mock:

id mockController = [OCMockObject partialMockForObject:viewController];
[[[mockController] stub] andReturn:mockWebView] webView];

[controller doSomethingWithWebView];

This won't work if viewController accesses the ivar directly, but it will if it accesses the ivar through the accessor: self.webview, which is generally how you should access properties.

link|improve this answer
Chrispix, thanks for your kindly help. – jianhua Dec 12 '11 at 15:05
Thanks you guy, yes, if you want your code to be tested, please write in the format self.var. – jianhua Dec 14 '11 at 1:16
feedback

Your Answer

 
or
required, but never shown

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