将 flutter 测试文件定位到源

Co-locate flutter test files to source

将测试文件放在 test 目录中需要记住在源移动时移动测试文件或什至找到相应的测试文件的心理体操。

有没有办法在 flutter 中将测试文件放在源代码旁边?

flutter test -h 没有任何路径相关的选项。

这可以通过

实现
flutter test lib/**/*_test.dart

https://github.com/dart-lang/test/tree/master/pkgs/test#running-tests

找到 Dart 测试包自述文件的提示