iOS 上 Xcode 4 的 OCUnit 示例?
我已经创建了一个使用 OCUnit 的应用程序,并使用 Xcode 3.2 运行这些测试。然而,今天我升级到 Xcode 4,并且还创建了新项目,添加了捆绑包,...但我无法运行测试用例。 构建始终显示:“成功”
您能告诉我一个逐步执行此操作的教程吗?
非常感谢!
I already created a App that use OCUnit and it run these tests with Xcode 3.2. However, today I upgrade to Xcode 4 and I also create new project, add bundle,...but I can't run test cases.
The build always show: "Suceeded"
Can you tell me a tutorial do this step-by-step?
Thanks so much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Xcode 4 中,测试用例与 IDE 的集成更加紧密。
创建项目时,选中项目设置对话框中的“包括单元测试”复选框,这将添加必要的框架。
要实际运行测试,只需从产品菜单中选择“测试”而不是“构建”或“运行”。
In Xcode 4, test cases are more tightly integrated with the IDE.
When you create a project, check the "Include Unit Tests" checkbox in the project setup dialog, which will add the necessary frameworks.
To actually run the tests, just select "Test" from the Product menu instead of "Build" or "Run".