This post originated from an RSS feed registered with .NET Buzz
by Sam Gentile.
Original Post: Unit tests not Edit and Continue
Feed Title: Sam Gentile's Blog
Feed URL: http://samgentile.com/blog/Rss.aspx
Feed Description: .NET and Software Development from an experienced perspective - .NET/CLR, Rotor, Interop, MC+/C++, COM+, ES, Mac OS X, Extreme Programming and More!
As a C# MVP, I am obligated to tell you that Edit & Continue is in C# now in this build regardless of my feelings, which are the same as John Robbins here. Program logic should not be tested in the debugger. You are wasting your time and your company's time if you do so. The debugger is for intractable problems. Unit tests with the place to verify, refector and edit as you go; not the debugger. Thats why NUnit-AddIn and VS Team System are so important - that's the way to do it.