dick #1

Merged
Adrien DICK merged 5 commits from dick into main 2025-11-27 11:40:58 +01:00
2 changed files with 2 additions and 5 deletions
Showing only changes of commit 6ee72f6939 - Show all commits

View File

@@ -46,9 +46,7 @@ public class PlayControllerTest {
public static Stream<Arguments> scenario() { public static Stream<Arguments> scenario() {
return Stream.of( return Stream.of(
Arguments.of(Move.ROCK, Move.SCISSORS, WIN), Arguments.of(Move.ROCK, Move.SCISSORS, WIN),
Arguments.of(Move.ROCK, Move.PAPER, LOOSE), Arguments.of(Move.ROCK, Move.PAPER, LOOSE)
Arguments.of(Move.WELL, Move.PAPER, LOOSE),
Arguments.of(Move.ROCK, Move.WELL, WIN)
); );
} }

View File

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