I am testing the application in the debug mode under several conditions. Now I’m doing it by writing some of the states and executed functions on the piece of paper and then comparing the scenarios.
Does anyone know if there is any built-in functionality in VS2008 or any additional tool that could record the selected states and executed functions?
Thanks!
You should look into TRACE and DEBUG directives of .NET. It means you have to write some code into your application where you want to Record events or variable states but it will give you a customized level of detail that should be better than writing down the information on a piece of paper.
Any DEBUG statements will only be compiled into a Debug build while TRACE statements are available to both Debug and Release builds (depnding on the directive specified).