I\'m wondering if the Maven surefire plugin either runs tests multi-threaded by default (and if so can the number of threads be controlled? ) or if it runs tests from the Te
I have found that if you are using the -T option in your maven command, Surefire will then fork into forkCount * number of concurrent processes.
To make them all run in one process despite having multiple threads specified by -T, you can force forkCount to be 0 by adding the option -Dsurefire.forkCount=0