You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to provide some actual use, some human readable report should be generated to do something with the results. The report should probably looks something like the standard gocoverage reporting:
with a dropdown to switch between files:
The html files above can be generated by running go test -coverprofile=coverage.out && go tool cover -html=coverage.out
The reports above only show code coverage. Below are a few screenshots from Pitest reports which display mutation test results ontop of code coverage
Right now, a json object is generated after mutation testing that contains an array of all mutations that occurred that looks like
In order to provide some actual use, some human readable report should be generated to do something with the results. The report should probably looks something like the standard gocoverage reporting:
with a dropdown to switch between files:
The html files above can be generated by running
go test -coverprofile=coverage.out && go tool cover -html=coverage.out
The reports above only show code coverage. Below are a few screenshots from Pitest reports which display mutation test results ontop of code coverage
cc/ @znja
The text was updated successfully, but these errors were encountered: