Hi all, I need to run different tests concurrently from the command line, and create a report for each.
This is what I tried so far: I created a super-test with multiple thread groups, each thread group representing one concurrent test. I run it with an ant task from the command line as explained here: http://www.programmerplanet.org/pages/projects/jmeter-ant-task.php. This works fine, but I have these questions: 1. Is there a better way to do this? I don't like the idea of combining all my tests into one big test. 2. How can I use xslt to create a report for each concurrent test? Thanks, Jonathan

