Ejemplo n.º 1
0
        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)
            });
Ejemplo n.º 2
0
 public void CreateBoard()
 {
     PlayBoard            = new BattleshipBoard();
     PlayBoard.ReportTool = ReportTool;
 }