"Code coverage" (synonym: test coverage) is a measure of the amount of application source code that has been exercised, usually by some testing regime, often by unit testing.
If you were to mandate a minimum percentage code-coverage for unit tests, perhaps even as a requirement for committing to …
unit-testing code-coverage code-metricsAfter running coverage reports in Eclipse (using cobertura or an EMMA plugin), my source code files get highlighted in green, …
java eclipse code-coverage cobertura emmaWhat is code coverage and how do YOU measure it? I was asked this question regarding our automating testing code …
testing computer-science code-coverageI wonder what options there are for .NET (or C# specifically) code coverage, especially in the lower priced segment? I …
c# .net code-coverageI am using Mocha for testing my NodeJS application. I am not able to figure out how to use its …
node.js unit-testing code-coverage mochaI've searched up and down the internet for this one. There's lots of half-answers out there, to do with Maven …
maven code-coverage sonarqube jacocoI generated a code coverage report from jacoco, which is jacoco.exec. But I don't know how to use it ... …
testing code-coverage jacocoHas anyone succeeded in generating code coverage for Go unit tests? I can't find a tool for that on the …
unit-testing testing go code-coverageProblem: I have a project with jacoco and I want to be able to filter certain classes and/or packages. …
java unit-testing gradle code-coverage jacocoIs there a way to exclude code from inclusion into Cobertura coverage reports? We have some methods that should not …
java code-coverage cobertura