Ajout Puit #2
All checks were successful
rock-paper-scissors/pipeline/pr-main This commit looks good

This commit is contained in:
2025-11-27 11:11:11 +01:00
parent 57d3bd7316
commit d0e2476807

View File

@@ -32,9 +32,11 @@ class MoveTest {
static Stream<Arguments> winnable(){
return Stream.of(
Arguments.of(Move.ROCK,Move.SCISSORS),
Arguments.of(Move.PAPER,Move.ROCK,Move.WELL),
Arguments.of(Move.PAPER,Move.ROCK),
Arguments.of(Move.PAPER,Move.WELL),
Arguments.of(Move.SCISSORS,Move.PAPER),
Arguments.of(Move.WELL,Move.ROCK, Move.SCISSORS)
Arguments.of(Move.WELL,Move.ROCK),
Arguments.of(Move.WELL,Move.SCISSORS)
);
}
}