update-code #1

Open
Patrick FELIX-VIMALARATNAM wants to merge 5 commits from update-code into main
Showing only changes of commit b4a28fdcf8 - Show all commits

View File

@@ -33,7 +33,10 @@ class MoveTest {
return Stream.of(
Arguments.of(Move.ROCK,Move.SCISSORS),
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.ROCK),
Arguments.of(Move.PAPER,Move.WELL)
);
}
}