使用 UIWebView 进行单元测试
在单元测试中创建 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
显然,这只在直接对静态库进行单元测试时才会发生。很可能
UIWebView
需要的任何东西都没有用空的测试主机
加载。当对应用程序进行单元测试时,不会发生这种情况。
Apparently this only happens when unit testing a static library directly. Most likely whatever
UIWebView
needs is not loaded with an emptytest host
.When unit testing an app this doest not occur.
您可以创建一个仅用于运行单元测试的应用程序目标。在同一工作区中创建一个新的空应用程序,并将其设置为单元测试目标的目标。我将我的应用程序称为 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.