Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 1.74 KB

File metadata and controls

35 lines (24 loc) · 1.74 KB
title Introduction Live Unit Testing
description Explore the advantages of Live Unit Testing, which executes unit tests automatically and in real time as you make code changes.
ms.date 09/11/2017
ms.topic concept-article
helpviewer_keywords
Live Unit Testing
author mikejo5000
ms.author mikejo
ms.subservice test-tools

Live Unit Testing overview

Live Unit Testing executes your unit tests automatically and in real time as you make code changes. This lets you refactor and change code with greater confidence. Live Unit Testing automatically executes all impacted tests as you edit your code to ensure that your changes do not introduce regressions.

Live Unit Testing indicates whether your unit tests adequately cover your code. It graphically depicts code coverage in real time. You can see at a glance how many tests cover each line of code and which lines are not covered by any unit tests.

If you have a solution that includes one or more unit test projects, you can enable Live Unit Testing by selecting Test > Live Unit Testing > Start from the top-level menu bar in Visual Studio.

Note

Live Unit Testing is only available in Visual Studio Enterprise edition and is supported only in .NET.

To learn more about Live Unit Testing:

Related content