我正在尝试使用 OCMock 1.77 进行 iOS4 和 Xcode 4/SDK4.3 的单元和应用程序测试。我已按照说明将 OCMock 用作此处的静态库:http: //www.mulle-kybernetik.com/software/OCMock/。单元和应用程序测试在没有 OCMock 的情况下运行良好。
当我添加 OCMock 并尝试为模拟器运行 OCMock 的测试套件(单元测试)时,我的测试台崩溃并显示代码 134。测试台在设备上运行良好(应用程序测试)。如果我查看控制台,我会看到下面的消息——这表明我没有按照上述 URL 中的说明添加 -force_load 链接器标志。但我有……有什么想法吗?
我看了看:Test rig 在 iOS 4 上使用 OCMock 验证代码 134 异常退出,这表明这种行为是一个错误——但我不确定情况是否相同,因为我正在运行 OCMock 测试套件。如果它是一个错误,是否有在单元测试中使用模拟的解决方法?
TIA。
=====
控制台输出:
3/30/11 1:02:32 AM otest[38552] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '** Expected method not present; the method getArgumentAtIndexAsObject: is not implemented by NSInvocation. If you see this exception it is likely that you are using the static library version of OCMock and your project is not configured correctly to load categories from static libraries. Did you forget to add the -force_load linker flag?'
*** Call stack at first throw:
(
0 CoreFoundation 0x004a05a9 __exceptionPreprocess + 185
1 libobjc.A.dylib 0x002cf313 objc_exception_throw + 44
2 CoreFoundation 0x00458ef8 +[NSException raise:format:arguments:] + 136
3 CoreFoundation 0x00458e6a +[NSException raise:format:] + 58
4 LogicTests 0x00f89de4 +[OCMockObject initialize] + 115
5 libobjc.A.dylib 0x002cfd9b _class_initialize + 380
6 libobjc.A.dylib 0x002d773f prepareForMethodLookup + 73
7 libobjc.A.dylib 0x002ce069 lookUpMethod + 86
8 libobjc.A.dylib 0x002ce1d6 _class_lookupMethodAndLoadCache + 40
9 libobjc.A.dylib 0x002e10e3 objc_msgSend + 87
10 SenTestingKit 0x20108824 +[NSObject(SenTestRuntimeUtilities) senAllSubclasses] + 107
11 SenTestingKit 0x201074a7 +[SenTestSuite updateCache] + 39
12 SenTestingKit 0x20107443 +[SenTestSuite suiteForBundleCache] + 92
13 SenTestingKit 0x201073a4 +[SenTestSuite testSuiteForBundlePath:] + 108
14 SenTestingKit 0x2010606b +[SenTestProbe specifiedTestSuite] + 332
15 SenTestingKit 0x20106792 +[SenTestProbe runTests:] + 156
16 otest 0x000023c7 0x0 + 9159
17 otest 0x000025f2 0x0 + 9714
18 otest 0x0000209a 0x0 + 8346
19 otest 0x00002049 0x0 + 8265
)