Skip to content

Commit

Permalink
adding another edge case for preconditions required in range
Browse files Browse the repository at this point in the history
Signed-off-by: Atanas Atanasov <[email protected]>
  • Loading branch information
ata-nas committed Dec 16, 2024
1 parent 7d2320b commit fb6e7c5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ private static Stream<Arguments> invalidRequireInRangeValues() {
Arguments.of(0, 1, 2),
Arguments.of(1, 2, 3),
Arguments.of(-1, 0, 1),
Arguments.of(-1, 0, 0));
Arguments.of(-1, 0, 0),
Arguments.of(1, 0, 0));
}
}

0 comments on commit fb6e7c5

Please sign in to comment.