-2

Is it feasible to test a desktop application using test manager? if yes, what are the limitations in doing so, if any?

Varun Bajpai
  • 545
  • 5
  • 20
  • You should provide more information about the tests you want to run. – Elena Nov 28 '13 at 17:15
  • @Elena : i want to perform an automated data driven test, in which i will be providing an external source (excel sheet), import it in the application and then needed to verify the data in the database, whether it is imported correctly. – Varun Bajpai Nov 29 '13 at 06:24

1 Answers1

0

Is it feasible to test a desktop application using test manager?


Yes, basically that what's Test Manager is for (along with manual testing).

if yes, what are the limitations in doing so, if any?

Well... that depends on tests you want to implement.
Importing data from an excel sheet to database and verify whether it is imported after that is a quite simple test. You should be able to run it without any problems.

I would highly recommend you this free e-book: Testing for Continuous Delivery with Visual Studio 2012
If you are using Visual Studio 2010 this book will be helpful, too, since the approach is similar.

Elena
  • 1,928
  • 1
  • 15
  • 23