Testing Problem
In my project I use JUnit5 alongside jqwik. Until Version 1.2.7 I could use Arbitrary samples in JUnit tests. With version 1.3.6 I get the error "The current action must be run on a jqwik thread ..." in CurrentTestDescriptor.get(), which is called in the initialization of the EdgeCaseFacadeImpl.
I know that I could replace all @test with @example, but JUnit has some other features one would want to use. And also most coworkers are more acustomed to using JUnit.
Testing Problem
In my project I use JUnit5 alongside jqwik. Until Version 1.2.7 I could use Arbitrary samples in JUnit tests. With version 1.3.6 I get the error "The current action must be run on a jqwik thread ..." in CurrentTestDescriptor.get(), which is called in the initialization of the EdgeCaseFacadeImpl.
I know that I could replace all @test with @example, but JUnit has some other features one would want to use. And also most coworkers are more acustomed to using JUnit.