0

flutter drive即使堆栈中存在运行时异常,使用我的测试仍然可以通过。

例如,将此代码添加到 build() 中,不会被检测到:

int? i;
i!.round();

有谁知道我怎么能在这个错误上失败?

4

1 回答 1

-1
try{}
catch(e){print('error: $e')}

如果您知道异常,请以这种方式添加:-

try
on
catch
于 2021-06-26T13:38:18.473 回答