feat: add well #1

Open
Jossua CREUZET wants to merge 2 commits from add-well into main
Showing only changes of commit 8ec2190781 - Show all commits

View File

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