I am using the Stepping Thread Group so that I constantly increase threads (users in system) every minute. I then have a Random Order Controller, containing several Simple Controllers, which in turn contain HTTP Requests:
Stepping Thread Group (Test Suite)
Random Order Controller (used to execute test cases randomly)
Simple Controller1 (Test Case)
HTTP Requests (Test Steps)
Simple Controller2 (Test Case)
HTTP Requests (Test Steps)
Simple Controller3 (Test Case)
HTTP Requests (Test Steps)
My idea is that the thread group will execute the simple controllers (Test Cases) in random order, and do so constantly until defined time runs out. So my questions are:
1) If I have an almost infine amount of users in CSV file, will this setup basically continue running the test cases in ranodm order continuously, or will each thread execute only once and then it just stops
2) If JMeter has ramped up all e.g. 150 threads, does that mean that 150 threads have been executed, or that 150 threads are now running concurrently?
Thanks!