Generation of test case data for Scala and Java, in the spirit of QuickCheck. When your test fails, it gives you a minimised failing test case and a way of reproducing the failure immediately.
There is a potential for some coding work to integrate the reproduction of failed cases with the JUnit 5 parameterised test framework - so every time a failing test case is found, it can be entered into a table source understood by JUnit 5. Is it worth doing that?
Same as #7 , only this is for JUnit 5.
There is a potential for some coding work to integrate the reproduction of failed cases with the JUnit 5 parameterised test framework - so every time a failing test case is found, it can be entered into a table source understood by JUnit 5. Is it worth doing that?