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 theNSURLConnectionDataDelegatemethodconnection:didReceiveResponse:. This means we’ll need a response to pass in as the second parameter. That’s where themockResponseobject comes in. We’ll create a mockNSHTTPURLResponsethat returns 404 when ask for its status code. This is how we will simulate the connection failure.