如何为 iOS 执行长时间运行的集成测试

How to execute a long runing integration test for iOS

我尝试搜索,但找不到 XCTest 的最大时间限制。我想编写一个将 运行 持续 1 - 2 小时的测试。我可以使用 wait(for: [CompletionExpectation], timeout: 3600) 来做到这一点吗?还是会因为测试 运行 时间上限而导致测试失败?

如果 XCtest 不能 运行 这么长的测试,那么我可以使用不同的测试框架吗?如果测试框架属于以下选项之一,那就太好了:Working with iOS Tests in AWS Device Farm

我是 AWS Device Farm 团队的一名工程师。您可以在此处查看 Device Farm 上测试执行的时间限制:https://docs.aws.amazon.com/devicefarm/latest/developerguide/limits.html. XCTest frameworks can be extended for several hours through looping or with the use of https://developer.apple.com/documentation/xctest/xctestcase/3526064-executiontimeallowance 如前所述。

为了在 AWS Device Farm 特定问题上获得更好的帮助,我建议使用 AWS Device Farm 论坛作为联系服务团队的媒介:https://forums.aws.amazon.com/forum.jspa?forumID=193

安迪