Here are some popular code coverage tools:
- Istanbul (https://istanbul.js.org/): Yet another JavaScript code coverage tool that computes statement, line, function, and branch coverage with module loader hooks to transparently add coverage when running tests. Supports all JS coverage use cases including unit tests, server-side functional tests, and browser tests. Built for scale.
- Goveralls (https://github.com/mattn/goveralls): Go integration for the https://coveralls.io/ continuous code coverage tracking system.
- dotCover (https://www.jetbrains.com/dotcover/): JetBrains dotCover is a .NET unit test runner and code coverage tool that integrates with Visual Studio.
Make sure you know to what extent your code is covered with ...