使用 UIWebView 进行单元测试

发布于 2024-12-10 17:46:55 字数 296 浏览 1 评论 0原文

在单元测试中创建 UIWebView 时,我得到 EXC_BAD_ACCESS:

-(void)test1 {
    [[UIWebView alloc] initWithFrame:CGRectZero];  // EXC_BAD_ACCESS
}

Is There a Special Configuration to run Units Test that Income UIWebView?

我在 XCode 4.2 上使用 OCUnit/SenTest。

When creating an UIWebView inside an unit test I get EXC_BAD_ACCESS:

-(void)test1 {
    [[UIWebView alloc] initWithFrame:CGRectZero];  // EXC_BAD_ACCESS
}

Is there a special configuration to run units test that involve UIWebView?

I'm using OCUnit/SenTest on XCode 4.2.

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

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

发布评论

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

评论(2

流殇 2024-12-17 17:46:55

显然,这只在直接对静态库进行单元测试时才会发生。很可能 UIWebView 需要的任何东西都没有用空的测试主机加载。

当对应用程序进行单元测试时,不会发生这种情况。

Apparently this only happens when unit testing a static library directly. Most likely whatever UIWebView needs is not loaded with an empty test host.

When unit testing an app this doest not occur.

感性不性感 2024-12-17 17:46:55

您可以创建一个仅用于运行单元测试的应用程序目标。在同一工作区中创建一个新的空应用程序,并将其设置为单元测试目标的目标。我将我的应用程序称为 TestRunner。

在此处输入图像描述

You can create an app target that is just for running your unit tests. Create a new empty application in the same workspace and set this as the Target for the unit test target. I call my app TestRunner.

enter image description here

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