Reputation: 283
I'm trying to create a load test in VS Test Project. I have one empty test method which is called multiple times. At best my test runs 600 times per second.
How to increase the number of running tests per sec?
Upvotes: 1
Views: 588
Reputation: 9793
At best my test runs 600 times per second.
I think this is limited by the machine where the Load test
is executing. Perhaps, you can increase this number by:
Virtual Users
to your Load Test. Your test iterations will be shared to the virtual users and they will be executing them in parallel.Test Agents
. If you are using a test rig for your Load Tests
you can define more VM (if possible) as Test Agents.See the following references for more details:
**If you add functionality to your empty test method I am afraid the runs/sec number will decreased again.
Upvotes: 1