Additional JUnit5 Setup
By default, JUnit tests are run sequentially in a single thread. To speed up tests parallel execution can be enabled.
Create junit-platform.properties
a file containing:
Place this file in the resources
directory of the test source set e.g:
Read more in the official JUnit5 documentation.
Last updated