Want something like forkEvery but for every method

Hello, we have allot of test on legacy code that did not use to have unit tests.
Now our test all pass in old gradle version 2.2 but in a new gradle version 2.9 some fail.
This is because some of the test are broken, and to determine which ones i would need to run each method in a separate jvm. Because we have (statics and) spring integration tests that interfere with each other.

forkEvery helps allot but i would be useful to also be able to do it on method level.

thx