test_cov_console 0.0.4 test_cov_console: ^0.0.4 copied to clipboard
Command line utility to read lcov.info and print the coverage report to console.
Flutter Console Coverage Test #
This small dart tools is used to generate Flutter Coverage Test report to console
How to install #
Add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dev_dependencies:
test_cov_console: ^0.0.4
How to run #
run the following command to make sure all flutter library is up-to-date #
flutter pub get
Running "flutter pub get" in coverage... 0.5s
run the following command to generate lcov.info on coverage directory #
flutter test --coverage
00:02 +1: All tests passed!
run the tool to generate report from lcov.info #
flutter pub run test_cov_console
---------------------------------------------|---------|---------|---------|-------------------|
File |% Branch | % Funcs | % Lines | Uncovered Line #s |
---------------------------------------------|---------|---------|---------|-------------------|
lib/src/ | | | | |
print_coverage.dart | 100.00 | 100.00 | 80.87 |...,206,207,208,209|
lib/ | | | | |
test_cov_console.dart | 0.00 | 0.00 | 0.00 | no unit testing|
---------------------------------------------|---------|---------|---------|-------------------|
All files with unit testing | 100.00 | 100.00 | 80.87 | |
---------------------------------------------|---------|---------|---------|-------------------|