rps1.2 #1

Merged
Alistair VAISSE merged 3 commits from rps1.2 into main 2025-11-27 11:59:38 +01:00
Showing only changes of commit 710d3617ad - Show all commits

View File

@@ -34,9 +34,9 @@ class MoveTest {
Arguments.of(Move.ROCK,Move.SCISSORS), Arguments.of(Move.ROCK,Move.SCISSORS),
Arguments.of(Move.PAPER,Move.ROCK), Arguments.of(Move.PAPER,Move.ROCK),
Arguments.of(Move.SCISSORS,Move.PAPER), Arguments.of(Move.SCISSORS,Move.PAPER),
Arguments.of(Move.WELL, Move.SCISSORS), Arguments.of(Move.WELL,Move.SCISSORS),
Arguments.of(Move.WELL, Move.ROCK), Arguments.of(Move.WELL,Move.ROCK),
Arguments.of(Move.WELL, Move.PAPER) Arguments.of(Move.PAPER,Move.WELL)
); );
} }
} }