public BattleshipGame(ICreateBoard createBoard, IPlaceBattleship placeBattleship, IAttack attack)
 {
     _createBoard     = createBoard;
     _placeBattleship = placeBattleship;
     _attack          = attack;
 }
示例#2
0
 public PlaceShipTest()
 {
     _placeBattleship = new PlaceBattleship();
 }