Support a per test fork mode for unit tests.
Maven supports "If you need to run your tests in a new JVM process you can use the forkMode option to start a new JVM process once for all your tests, or start a new JVM process for each of your tests"
It would be useful if IntelliJ supported this as well.
Basically we see an occational error due resources not being cleanup between tests. While an issue, we won't be stop/starting components this way in maven/teamcity/dev or production so it isn't a high priority at present and it would be simpler for the moment to have perTest forking in IntelliJ as well.
We are also looking at resource consumption of different tests, perTest foring would assist to get accurate and consist values (without having to run all tests individually)
BTW: to find problems which only occur when running multiple tests in the same JVM it would help if the tests could run in a predictable order because the order tests are run becomes important in reproducing the problem.