如何在xcode4中实现应用程序测试?

发布于 2024-11-01 07:31:15 字数 179 浏览 4 评论 0原文

我正在尝试为我的应用程序添加一些测试。根据 Apple 的文档,我向我的项目添加了两个测试包。 逻辑测试没有问题,但是当我尝试在设备上进行应用程序测试时,我总是收到逻辑测试不在设备上运行的错误。

在 Xcode 3 中没有问题。只有 Xcode 4 会抛出此错误...

有什么建议吗?

谢谢,蒂姆

I'm trying to add some Tests for my application. Following the Document from Apple, I add two testing bundles to my project.
The logic tests are no problem, but when I try to make the application tests on a device I always get the error that the logic tests don't run on a device.

In Xcode 3 there is no problem with that. Only Xcode 4 throws this error...

Any suggestions?

Thanks, Tim

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

相思故 2024-11-08 07:31:15

我在 xcode4 中设置应用程序测试时也遇到问题。
对我有用的解决方案如下:

假设您有一个名为“MyApp”的应用程序目标,

  1. 将“其他/Cocoa 单元测试捆绑包”类型的新目标添加到项目中,例如“MyAppTesting”。所有单元测试文件都位于此处。
  2. 转到 MyAppTesting 构建阶段并将 MyApp 添加为目标依赖项。这可确保在构建 MyAppTesting 目标之前构建 MyApp。
  3. 打开 MyAppTesting 的 Build Settings 并更改
    • 捆绑加载器:$(BUILT_PRODUCTS_DIR)/MyApp.app/MyApp
    • 测试主机:$(BUNDLE_LOADER)

    这会导致测试在 MyApp 中运行。

  4. 打开 MyApp 的 Build Settings 并更改
    • 默认隐藏符号:NO(两者)
    • 复制期间删除调试符号:调试:否

    通过这样做,您不必将每个 .m 文件都包含到测试目标中。

要在设备上运行测试,请插入设备并选择方案“MyAppTesting on device”并作为测试运行。确保上述方案已在测试/构建配置中设置“调试”,这应该是默认值。

此致。

i was also having problems with setting up application tests in xcode4.
A solution that worked for me was as follows:

Assuming you have an application target called "MyApp"

  1. Add a new target of type "other/Cocoa Unit Testing Bundle" to the project e.g "MyAppTesting". Here all Unit test files are located.
  2. Go to MyAppTesting Build Phases and add MyApp as Target Dependency. This assures that MyApp is build before building the MyAppTesting target.
  3. Open the Build Settings of MyAppTesting and change
    • Bundle Loader: $(BUILT_PRODUCTS_DIR)/MyApp.app/MyApp
    • Test host: $(BUNDLE_LOADER)

    That causes the tests to run within MyApp.

  4. Open the Build Settings of MyApp and change
    • Symbols Hidden by default: NO (for both)
    • Strip debug Symbols during Copy: Debug:NO

    By doing so you do not have to include every .m-file into the test target.

To run the test on a device plugin the device and select the scheme "MyAppTesting on device" and run as test. Assure that the mentioned scheme has set "Debug" within Test/Build Configuration which should be default.

Best regards.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文