public void AddAShipToBoardTest()
        {
            BattleshipBoard board = new BattleshipBoard();

            Battleship ship = new Battleship(6);

            ship.SetupDeployment(new List <(int, int)> {
                (1, 3), (1, 4), (1, 5), (1, 6)
            });
Exemple #2
0
 public void CreateBoard()
 {
     PlayBoard            = new BattleshipBoard();
     PlayBoard.ReportTool = ReportTool;
 }