Book Image

Software Testing with Visual Studio Team System 2008

By : N Satheesh Kumar, Subashni. S
Book Image

Software Testing with Visual Studio Team System 2008

By: N Satheesh Kumar, Subashni. S

Overview of this book

<p>We all know that software testing is the most important part of the Software development life cycle and the quality of the end product is mostly dependent on how well we test our products. But, testing is neither an easy process nor remotely exciting for all the developers.<br /><br />For testing your applications on the Microsoft platform, Visual Studio Team System 2008 offers you a range of powerful tools for different types of testing. This Microsoft product makes the testing process easier as well as more exciting, not boring anymore.<br /><br />This concise guide will lead you through the bewildering range of features offered by Visual Studio Team System 2008 to test your software applications before going live. It is packed with simple examples and screenshots to get you comfortable with the VS Team System 2008 testing environment.<br /><br />The book introduces you to the main types of testing available in VS Team System 2008 for both desktop and web applications, and then walks you through deploying, running, and interpreting the results of tests. If you've been testing applications in Visual Studio 2005, the book will show you how you can move this easily to Visual Studio 2008.<br /><br />You will learn about the Unit test, Manual test, Web test, Load test, Ordered test, and Generic test, and the support for them in VS Team System 2008. By the end of the book you will be using the tools to manage and run your tests, collect and analyze your test results, and improve the reliability of your software applications.<br /><br />Later, you will prepare reports to monitor the quality of your software applications, using the available reporting templates in Visual Studio 2008 Team system and Team Foundation Server.</p>
Table of Contents (15 chapters)
Software Testing with Visual Studio Team System 2008
Credits
About the Authors
Preface
10
Working with Test Results

Chapter 10. Working with Test Results

The test results are not only useful to see if the method and class are returning the expected result, but also to analyze the application and to verify the build. We can add the test as part of the Team Foundation Server automated build, so that we can verify the build and make sure the latest code checked in to the source control is working as expected. The build process produces the same results as we get when we run the test project and the results are stored in the Test Results folder. Whenever there is a test failure, we can directly create a defect from the test results window into the Team Foundation Server as a work item of type defect. Chapter 9 explained about publishing the test result to the corresponding build using the command line utility. The test result from the Test Results window can also be published directly to the Team Foundation Server build, which is explained in detail later in this chapter.

Test results

All the tests run through...