1.在Visual Studio代码中,我看不到运行所有Flutter单元测试的GUI选项。我必须分别选择每个测试文件,右键单击,然后选择“开始调试”或“开始但不调试”。1.当模拟器运行时,我无法做到以上几点。我无法从GUI运行任何单元测试我的单元测试位于测试目录中,并且都以“_test. dart”结尾。为了解决上述两个问题,我可以通过从终端执行flutter test来运行所有的单元测试,但我想知道是否有GUI选项。Android Studio上不存在此问题。
flutter test
pgx2nnw81#
你试过这个吗?https://dartcode.org/releases/v2-21/将以下内容添加到launch.json文件中。如果没有launch.json文件,请转到VS Code中的Run视图,然后单击create a launch.json file。
launch.json
create a launch.json file
{ "name": "All Tests", "type": "dart", "request": "launch", "program": "tests/", // or test/foo for a subset of tests }
字符串
1条答案
按热度按时间pgx2nnw81#
你试过这个吗?https://dartcode.org/releases/v2-21/
将以下内容添加到
launch.json
文件中。如果没有launch.json文件,请转到VS Code中的Run视图,然后单击create a launch.json file
。字符串