@ -0,0 +1,7 @@
public class Game {
public static void main(String[] args) {
Gameboard gb = new Gameboard();
gb.initGameboard();
}
@ -0,0 +1,11 @@
import static org.assertj.core.api.Assertions.*;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
public class GameTest {