@ -0,0 +1,18 @@
import BattleShip.BShip;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertNotNull;
class BShipTest {
@Test
public void testStartGame() {
BShip bShip = new BShip();
bShip.autoPlacement = true;
bShip.startGame();
assertNotNull(bShip.grid1);
assertNotNull(bShip.grid2);
}