Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有时在运行我的 UI 测试时,我会收到以下错误Lost connection to test manager services。没有日志什么的。随机发生。我会提供更多信息,但由于错误的性质,我只是没有。
Lost connection to test manager services
使用 Xcode 7 测试版 5。
测试中进行的每个异步操作都会出现该错误。有可能:
dispatch_after
运行用 Swift 编写的 UI 测试时,我遇到了同样的错误。事实证明,当运行更长的测试(没有内存释放)时,内存使用量不断增加。当内存耗尽时,设备“失去与测试管理器服务的连接”。
解决方案?在其 Swift 版本中的适当位置使用“autoreleasepool”。