iOS 的 TestLab 中的 Flutter 集成测试 - 用例未划分为 iOS

Flutter Integration test in TestLab for iOS - Use cases are not divided in iOS

我在 Firebase 中使用测试实验室,我发现的问题是 iOS 中的结果,因为它没有显示我的集成测试中的所有用例。

这是我在 Android 中的结果 我可以在 TestLab 中看到所有用例。

在 iOS 中,我找不到我的测试用例,我只找到一个调用我的两个用例的用例。

我检查了日志,两个测试用例在 iOS 中执行,但问题出在 TestLab 控制台中显示的结果。我想查看所有用例。

https://github.com/flutter/flutter/pull/95704 开始,Flutter integration_test 将为每个 dart 测试动态创建一个原生 XCTestCase。这将匹配 Android 的行为,您应该会在 TestLab 中看到 1:1 测试结果,或者如果您 运行 在 ios/Runner.xcworkspace 中的 Xcode 本地进行测试。

修复将在下一个稳定版本中提供。