无法在Xcode 6 Beta 5上运行测试

时间:2014-08-25 14:40:50

标签: ios testing xcode6 kiwi

我有一个使用Kiwi测试框架的iOS项目(我从cocoapods安装的最新版本2.3.0)。 首先,当我运行测试时,我收到一个错误,它无法找到XCTest.h。 所以我按照这个答案的建议:https://stackoverflow.com/a/24651704/1082326,问题就消失了。

然而出现了一个不同的问题,现在当我尝试在选择的模拟器是“iPhone 5(8.0)”时运行测试时,我收到以下错误:

IDEBundleInjection.c: Error 3587 loading bundle
'/Users/ifeins/Library/Developer/Xcode/DerivedData/teacup-
aaenoytmfpqpgmaebqotyfrutlxy/Build/Products/Debug-iphonesimulator/teacup-tests.octest': 
The bundle “teacup-tests.octest” couldn’t be loaded because it is damaged or missing 
necessary resources.
DevToolsBundleInjection environment:
XCInjectDiagnostics: (null)
XCInjectBundleInto: /Users/ifeins/Library/Developer/Xcode/DerivedData/teacup- 
aaenoytmfpqpgmaebqotyfrutlxy/Build/Products/Debug-iphonesimulator/valet.app/valet
XCInjectBundle: /Users/ifeins/Library/Developer/Xcode/DerivedData/teacup-
aaenoytmfpqpgmaebqotyfrutlxy/Build/Products/Debug-iphonesimulator/teacup-tests.octest
TestBundleLocation: /Users/ifeins/Library/Developer/Xcode/DerivedData/teacup-
aaenoytmfpqpgmaebqotyfrutlxy/Build/Products/Debug-iphonesimulator/teacup-tests.octest
TMPDIR: /Users/ifeins/Library/Developer/CoreSimulator/Devices/BC59F7AC-9D3E-4FFC-9726-
97911AA597A6/data/Containers/Data/Application/E1D4A3F0-C06B-485D-BF87-9F5EA70D974A/tmp
DYLD_LIBRARY_PATH: /Users/ifeins/Library/Developer/Xcode/DerivedData/teacup-
aaenoytmfpqpgmaebqotyfrutlxy/Build/Products/Debug-iphonesimulator
DYLD_INSERT_LIBRARIES: /Applications/Xcode6-Beta5.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/PrivateFra
meworks/IDEBundleInjection.framework/IDEBundleInjection
DYLD_FRAMEWORK_PATH: /Users/ifeins/Library/Developer/Xcode/DerivedData/teacup-
aaenoytmfpqpgmaebqotyfrutlxy/Build/Products/Debug-iphonesimulator
DYLD_FALLBACK_LIBRARY_PATH: /Applications/Xcode6-Beta5.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulat
or8.0.sdk/usr/lib
DYLD_FALLBACK_FRAMEWORK_PATH: /Applications/Xcode6-Beta5.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator8.0.sdk/Developer/Library/Frameworks

你知道这可能是什么问题吗?

提前致谢, IDO

5 个答案:

答案 0 :(得分:2)

我通过将代码签名设置为“Do not Code Sign”并清理项目( Cmd + Option + Shift + K )解决了这个问题。

enter image description here

答案 1 :(得分:1)

请查看:https://stackoverflow.com/a/22024428/529243https://stackoverflow.com/a/22056161/529243

我遇到了同样的错误,在通过这些步骤后,问题就消失了。

答案 2 :(得分:1)

使用XCTest转换向导:

Edit > Refactor > Convert to XCTest

答案 3 :(得分:1)

我从github找到了一个解决方案:https://github.com/kiwi-bdd/Kiwi/issues/570 (感谢tjarratt @ https://github.com/tjarratt

将测试包的“包装扩展”从octest更改为xctest。

答案 4 :(得分:1)

我最近有这个,我发现我已经为一个专门用于我们旧的OCTest残余类的目标添加了一个新的XCTest。只是分享,以防将来帮助任何人。