Re: running systemtests in isolated java processes

2024-03-01 Thread Johan Vos
On Fri, Mar 1, 2024 at 4:04 PM Kevin Rushforth wrote: > Hi Johan, > > FOr the systemTests project, the gradle test runner does run each test > class in its own VM, as a result of the "forkEvery = 1" setting. As > noted, gradle launches tests using a gradle test runner class as the > main method,

Re: running systemtests in isolated java processes

2024-03-01 Thread Kevin Rushforth
Hi Johan, FOr the systemTests project, the gradle test runner does run each test class in its own VM, as a result of the "forkEvery = 1" setting. As noted, gradle launches tests using a gradle test runner class as the main method, but there is still a 1 VM to 1 test class relationship. We ha

running systemtests in isolated java processes

2024-03-01 Thread Johan Vos
Hi, We currently run systemtests using a gradle command, but that doesn't start a clean Java process for the individual tests (which would be very convenient as that allows us to inspect the process with VisualVM). We know the behavior of a JavaFX application can be different depending if 1. the m