Hi! Very new to Odin still.
Is there any tooling for measuring code coverage of my test suite?
Thanks!
Hi! Very new to Odin still.
Is there any tooling for measuring code coverage of my test suite?
Thanks!
There are automated tools that can do code coverage (usually working with debug information). We have one for the Odin codebase itself: Codecov
However, I rarely find code-coverage to ever be a useful metric. It more than not produces way too many false positives and is fundamentally not that helpful when developing a tool.
You have to use your own judgement on top of the code coverage number too to see if it is saying anything useful.