测试视图控制器——iPhone
我的问题有两个。 1. 我可以使用 OCUnit 来测试视图控制器吗?如果是这样,我该怎么办?如果没有,我可以使用其他测试套件吗?
My question is 2-fold. 1. Can I use OCUnit to test View Controllers. If so, how should I do it? If not, is there another Testing Kit I can use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你绝对可以。假设您有一个 UITableViewController,并且您想确保它有 2 个部分,每个部分有 5 行;这可以通过像这样的测试方法轻松完成:
我还建议使用 OCMock帮助您测试控制器。您可以轻松地模拟视图并确保您的控制器与其正确交互。
You definitely can. Say you had a UITableViewController, and you wanted to make sure that it had 2 sections with 5 rows each; that is easily done in a test method like so:
I would also recommend also utilizing OCMock to help you with testing your controllers. you can easily mock a view and ensure that your controller is interacting with it properly.