You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
code coverage
About this tag
Code coverage is a metric used in software testing to measure the percentage of source code executed during automated tests. On WindowsForum.com, discussions highlight tools like IntelliTest in Visual Studio, which automatically generates unit tests for .NET code. IntelliTest explores code to produce test inputs for each statement and analyzes conditional branches to create parameterized unit tests, aiming for high code coverage. This helps developers identify untested code paths and improve test suite effectiveness. The tag covers topics related to .NET testing, Visual Studio features, and automated test generation techniques.
In this episode, Robert is joined by Link Removed, who shows us how to use IntelliTest to automatically generate unit tests. IntelliTest explores your .NET code to generate test data and a suite of unit tests. For every statement in the code, a test input is generated that will execute that...