diff --git a/.idea/misc.xml b/.idea/misc.xml
index 0319d5d..220cd6a 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/test/BoardTests.java b/test/BoardTests.java
index d7c6e76..d6fdcf8 100644
--- a/test/BoardTests.java
+++ b/test/BoardTests.java
@@ -36,12 +36,9 @@ public class BoardTests {
@ParameterizedTest
@MethodSource("getSetBoxTestData")
- public void getSetBoxTests(Object[] args){
+ public void getSetBoxTests(int col, int row, boolean shouldThrow){
Board b = new Board();
Player p = Player.X;
- int col = (int) args[0];
- int row = (int) args[1];
- boolean shouldThrow = (boolean) args[2];
if (shouldThrow){
Assertions.assertThrows(IndexOutOfBoundsException.class, ()-> b.setBox(col, row, p));
diff --git a/test/InputCheckerTests.java b/test/InputCheckerTests.java
index df90e9e..abaa9df 100644
--- a/test/InputCheckerTests.java
+++ b/test/InputCheckerTests.java
@@ -3,25 +3,26 @@ import model.InputChecker;
import model.Player;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
import java.util.Random;
import java.util.stream.Stream;
public class InputCheckerTests {
- public static Stream