diff --git a/CHANGELOG.md b/CHANGELOG.md index a6d4ba9..412475a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.7.0 + - Added new builtin rules that remove lines of code (void function calls and contents of arrays) + - Coverage information is provided in the html report: line numbers of instrumented lines are displayed in red and executed lines are displayed in green + ## 1.6.0 - Added the option to exclude lines not covered by tests. You can pass a file with coverage information in the lcov format via the command line flag "--coverage". diff --git a/doc/output/example/source.dart.html b/doc/output/example/source.dart.html index ea865b9..1527b8d 100644 --- a/doc/output/example/source.dart.html +++ b/doc/output/example/source.dart.html @@ -17,6 +17,13 @@ background-color: #DAE7FE; } +.covered { + background-color: #9EFF83; +} +.instrumented { + background-color: #FF8983; +} + .hit:hover { color: white; background-color: #6688D4; @@ -308,6 +315,12 @@ .hit { background-color: #26334F; } + .covered { + background-color: #0A3302; + } + .instrumented { + background-color: #391D1D; + } .addedLine { background-color: rgb(37, 83, 37); } @@ -320,7 +333,6 @@ a:link, a:visited { color: #58a6ff; } - .match .tooltip { background-color: black; color: #fff; @@ -348,7 +360,7 @@