what is Test menu in visual studio ?
what are the Test menu uses in visual studio ?
Does it be used for finding bugs or for testing the application....
How it can used ?
can some explain this usage & how to use.... or any use ful links
Visual Studio provides many different ways to run tests. You can choose the way that best suits your current needs:
http://msdn.microsoft.com/en-us/library/ms182470.aspx#RunTestsFromSolutionFiles. By using the keyboard, you can run tests from any text-based file in your solution. In particular, you can run tests while editing a file that contains your code under test. This lets you change source code and immediately test it without using a window or a menu.
http://msdn.microsoft.com/en-us/library/ms182470.aspx#RunTestsFromTestProject. By using the mouse or the keyboard, you can run tests from the file that contains your test code. This lets you change a test and then run it immediately without using a window or a menu.
http://msdn.microsoft.com/en-us/library/ms182470.aspx#RunTestsFromWindows. You can also run tests from the Test View window, the Test List Editor, and from the Test Results window.