OCMock Examples
Next, we create a mock connection, just like last time, except now we tell it to also expect a call to
cancel
.In addition to calling
start
, we’re also going to manually invoke theNSURLConnectionDataDelegate
methodconnection:didReceiveResponse:
. This means we’ll need a response to pass in as the second parameter. That’s where themockResponse
object comes in. We’ll create a mockNSHTTPURLResponse
that returns 404 when ask for its status code. This is how we will simulate the connection failure.