Visual Studio Load Tests Virtual Users Simulation

Posted by Eldar on Programmers See other posts from Programmers or by Eldar
Published on 2011-01-05T18:43:24Z Indexed on 2011/01/05 18:59 UTC
Read the original article Hit count: 178

Hello, I'm currently working on writing a load testing application that takes advantage of Load Test using Visual Studio 2010. The load test will simulate 20 users on the same machine, and I need some data to be shared in-memory between all simulated users.

I was suprised I couldn't find documentation answering the following question:

What seperates each virtual user's running context from the other? Does each virtual user runs the tests in its own process? Maybe in its own app domain? Or just on its own thread? I need to know because if each user is running tests in its own process then all the in-memory cache isn't shared and is created for each user instead of one time for all of them, which is bad for me.

© Programmers or respective owner

Related posts about visual-studio-2010

Related posts about load-testing