public void AddShipToBoard_Pass() { _stateTracker.Setup(); Ship newShip = new Ship() { Name = "s1", StartRow = 0, StartCol = 0, Length = 4, Orientation = Enums.ShipOrientation.Horizontal }; var result = _stateTracker.AddShipToBoard(newShip); Assert.IsTrue(result); }