我正在尝试模拟对 NSURLConnection 的调用。我用我自己的调用我的模拟对象的类方法调用来调和类方法调用。我正在尝试像这样实现模拟:
[[[[urlConnectionMock expect] andDo:^(NSInvocation *invocation) {
NSURLResponse * __autoreleasing *responsePointer;
[invocation getArgument:&responsePointer atIndex:3];
id response = [OCMockObject niceMockForClass:NSHTTPURLResponse.class];
[[[response stub] andReturnValue:OCMOCK_VALUE((NSInteger){ 200 })] statusCode];
*responsePointer = response;
}] andReturn:encryptedResponse] sendSynchronousRequest:OCMOCK_ANY returningResponse:OCMOCK_ANY error:OCMOCK_ANY];
问题是 OCMOCK_ANY 是一个 Objective-C 指针,而不是指向指针的指针(编译器正确地抱怨)。在我更深入地研究 OCMock 源之前,也许有人可以建议如何解决这个问题?如果您完全有更好的方法,则给予全额奖励。