0

I need to find out the performance of my application.This application works as follows-

  • It's a WPF windows application, which requires some data to be filled by user
  • On clicking Submit button, it calls WCF web services
  • These services save these values in DB

Which tool would be the best for this scenario?

Sud
  • 25
  • 6
  • 1
    A "load test" of a WPF Application? Do you mean you want to simulate what happens when many users are each using one copy of the WPF application? – John Saunders Nov 26 '11 at 20:14

2 Answers2

1

For automated load testing you probably need two things:

  1. A database server with data in it. There is a question regarding generating test data: Creating test data in a database
  2. You can use the UI automation framework to simulate user input in your WPF app.

Then setup your server and run as many clients as you want to see when it falls over.

Community
  • 1
  • 1
ChrisWue
  • 18,612
  • 4
  • 58
  • 83
0

There are a couple of excellent tools. Telerik has a good tool for profiling both a .NET windows application as well as a WCF service. I've also found that JetBrains has another excellent profiler. I've used Jet Brains to profile, WCF code as well as windows applications. If you're app communicates over HTTP. Fiddler could be another good

CHowell
  • 85
  • 2
  • 12