|
@ -52,6 +52,8 @@ class GameLogicTest { |
|
|
|
|
|
|
|
|
private static Stream<Arguments> testCasesForCountPlayfields() { |
|
|
private static Stream<Arguments> testCasesForCountPlayfields() { |
|
|
return Stream.of( |
|
|
return Stream.of( |
|
|
|
|
|
Arguments.of("1x1 board with too few fields", 1, 9), |
|
|
|
|
|
Arguments.of("2x2 board with too few fields", 2, 9), |
|
|
Arguments.of("3x3 board with 9 playfields", 3, 9), |
|
|
Arguments.of("3x3 board with 9 playfields", 3, 9), |
|
|
Arguments.of("4x4 board with 16 playfields", 4, 16), |
|
|
Arguments.of("4x4 board with 16 playfields", 4, 16), |
|
|
Arguments.of("5x5 board with 25 playfields", 5,25) |
|
|
Arguments.of("5x5 board with 25 playfields", 5,25) |
|
|