In computer programming, Unit Testing is a software development and testing process by which the smallest testable parts of source code, called units, are tested to determine whether they are performing as per the design. Unit testing is generally part of an automation process, but you can run it manually too.
Visual Studio 2017 has a new productivity feature called Live Unit Testing, which is currently available in the Enterprise edition and only for C#/VB.NET projects that target the Microsoft .NET Framework.
Keeping a baseline on an understanding of the basics of the Unit Testing process, in this chapter, we are going to discuss only the new feature Live Unit Testing and will cover the following points:
- Overview of Live Unit Testing in Visual Studio 2017
- Unit testing framework support
- Understanding the coverage information shown in...