What exactly is the difference in between List<Action>
and ActionSequence
in jqwik.
In the doc of jqwik, ActionSequence
is created using Arbitraries.sequences(...)
and the List<Action>
is created using Arbitraries.oneOf().list()
Since the purpose of ActionSequence
and List<Action>
is to provide a combination of actions to run after each other.
Please guide me. Thanks :)