Is it possible to tell Maven2 to execute every jUnit test in new JVM instance (fork) in serial mode, i.e. one by one.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You have to fork the JVM like explained here
It should also be possible by just declaring a Sytem property
As described in the documentation: "always" forks for each test-class. I do not know if the "pertest" setting will fork for each test. Thanks to @Djebel for pointing out that
|
|||||||||
|
|
What about the standard
|
|||
|
|