intellitest

About this tag
IntelliTest is a Visual Studio feature that automatically generates unit tests for .NET code. It explores your code to produce test data and a suite of unit tests, aiming for high code coverage. For each statement, a test input is generated to execute that statement, and case analysis is performed for every conditional branch. This helps developers create parameterized unit tests efficiently, reducing manual effort in test creation.
  1. Intellitest | Visual Studio Toolbox

    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...