Skip to content
Advertisement

Tag: jqwik

Difference between List and ActionSequence in jqwik

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 🙂 Answer Always use ActionSequence if you want

Advertisement