Update src/test/java/fr/iut_fbleau/info/but3/automation/rock_paper_scissors/play/domain/MoveTest.java
Some checks failed
rock-paper-scissors/pipeline/head There was a failure building this commit

add the test ofr the WELL adding
This commit is contained in:
2025-11-29 19:37:30 +01:00
parent 699de02810
commit b4a28fdcf8

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)
);
}
}