Tagged Questions
13
votes
1answer
8k views
Testing use of NSURLConnection with HTTP response error statuses
I'm writing an iPhone application that needs to get some data from a web server. I'm using NSURLConnection to do the HTTP request, which works well, but I'm having trouble unit testing my code in the ...
11
votes
4answers
1k views
How to stub a class method in OCMock?
I often find in my iPhone Objective-C unit tests that I want stub out a class method, e.g. NSUrlConnection's +sendSynchronousRequest:returningResponse:error: method.
Simplified example:
- ...
3
votes
4answers
786 views
Using a struct with OCMock or Hamcrest
I'm hitting a road block and I'm wondering if the brilliant collective minds here can help. In ObjC CocoaTouch I'm trying to mock an object that takes struct parameters and returns a struct. OCMock is ...
2
votes
3answers
555 views
Set readonly navigationController property on UIViewController for mocking
I have created a mock UINavigationController using OCMock. However, I cannot assign it to the navigationController property of a UIViewController since that property is readonly.
id ...