PreviousNext

Live Unit Testing in Visual Studio 2017

by bill-s, 2017-12-30T05:02:52.000Z

You may be curious what "live unit testing" means, so let’s dive into that a little bit. "Live" unit testing is simply the automated execution of unit tests that may have been impacted by a code change, and provides the results of that test run back into the IDE (in this case, Visual Studio) in real time. There are products out there that have provided this mechanism for quite some time - most notably, NCrunch, which is a fantastic tool. However, Microsoft has recently given us this capability directly inside the Visual Studio IDE, without the need for external tooling/extensions!

Read More