citrus icon indicating copy to clipboard operation
citrus copied to clipboard

Add convenient retry count configuration to RepeatOnErrorBuilder

Open jklingen opened this issue 7 years ago • 0 comments

User story As a software developer, I would love to see a convenient way to configure retry count of repeatOnError, so that I can write citrus test even faster.

Currently

repeatOnError().until((i, testContext) -> i <= 20)

Suggested:

repeatOnError().times(20)

jklingen avatar Sep 04 '18 13:09 jklingen