当参数不是预期参数时,OCMock抛出NSInternalInconsistencyException

时间:2011-05-06 12:55:19

标签: ios tdd ocunit ocmock

我正在为委托对象设置一个模拟对象,以检查当URL为nil时,调用委托方法时使用nil作为参数。

FileDownloadOperation按预期行事时,测试通过,这很好。

FileDownloadOperation未调用委托方法时,测试会按预期失败。

但是当FileDownloadOperation使用除nil之外的其他内容调用委托方法时,测试崩溃而没有执行其他测试,因为OCMock抛出:

'NSInternalInconsistencyException'原因:'OCMockObject [FileDownloadOperationTest]:调用了意外的方法:data:<> forURL:nil

  -(void) testNilURL{
      // 1. Create an operation
      FileDownloadOperation * anOp = [[FileDownloadOperation alloc]init];
      // 2. set a nil URL
      anOp.URL = nil;
      // 3. set a mock delegate
      id mockDelegate = [OCMockObject mockForClass:[self class]];
      [[mockDelegate expect] data:[OCMArg isNil] forURL:[OCMArg isNil]];
      anOp.delegate = mockDelegate;
      // 4. launch operation
      [anOp main];
      // 5. ASSERT mock delegate is called with nil data
      STAssertNoThrow([mockDelegate verify], @"Delegate should be called with nil data and nil URL");
      [anOp release];
    }

这是预期的行为吗?或者我做错了什么? 谢谢!

1 个答案:

答案 0 :(得分:4)

OCMock抛出异常来报告不匹配,信任OCUnit来捕获并报告任何异常。但是due to a bug in the iOS Simulator,单元测试无法捕获异常,因此只是崩溃。

(我目前正在编写一个新的模拟框架,通过不依赖异常来解决这个问题。)