运行单个测试方法
使用 OCUnit 和Xcode,有没有一种方法可以只运行一个测试?
理想情况下,我能够只运行一个测试方法,但如果有一种方法可以只运行一个测试用例,那也可以。
我目前正在做的是运行“测试”任务,该任务运行我的所有测试,但这会占用大量时间,理想情况下可以将这些时间花在做其他事情上。
Using OCUnit & Xcode, is there a way of running just one test?
Ideally, I'd be able to run just one test method, but if there's a way to just run a single test case, that would be OK too.
What I'm currently doing is running the 'Test' task which runs all of my tests, but this takes up a lot of time, which ideally could be spent doing other things.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 Xcode 工程师的这篇文章:
http://chanson.livejournal.com/119578.html
最后一段解释了如何指定单个测试用例类。
有关更多信息,请参阅 Chris 关于单元测试的整个系列:
http://chanson.livejournal.com/标签/单元%20testing
See this post from an Xcode engineer:
http://chanson.livejournal.com/119578.html
The last paragraph explains how to specify a single test case class.
For more info see Chris' entire series on unit testing:
http://chanson.livejournal.com/tag/unit%20testing