This was originally a Github Issue in the Dart-Code repository.
1. Context
I've been working on a package that has hundreds of tests, so an easy way of visualizing code coverage would be incredibly handy.
I would like to run my tests with, say, a .vscode configuration with an lcov.info output which would automatically be recognized by VS Code and highlighted on the respective editors with either red or green.
2. What I've Already Tried
I've tried many different solutions in the past few days — months actually — but none of them worked as the ideal one described above:
flutter test --coverage --coverage-path=lcov.infodoes work to generate the necessary file, but it's clunky to have to visualize it through a 3rd party program such asgenhtml, all the more if you're on Windows.- And it does need Flutter in the end, which should not be necessary if you're working on pure Dart...
- IntelliJ would supposedly work ideally, but I just can't seem to enable the Run with Coverage button on mine, even after installing the
test_coveragepackage.- Though one person on Gitter told me he has it working on his IntelliJ.
- Both the
coverageand thetest_coveragepackages offer something close to what I described above, but their solutions are way clunkier — and on Windows they are tough to set up... - codecov.io is an alternative with a 3rd party, but it's annoying to have to handle this externally when the editor offers a much more flexible and faster experience.
- And there is also the problem of ambiguous coverage, which is not clear with respect to codecov.io. For example, if one folder tests stuff that indirectly calls another folder, does that count as coverage for the indirectly called folder as well? That's almost always undesirable.
3. Other Resources
- There's this old question on StackOverflow that was helpful initially.