Exemplo n.º 1
0
        public void ShipComponentIsDeletedCorrectly()
        {
            var position = new Coordinate(1, 2);

            shipComponents.Add(position, mockBuilderObject.Object);
            objectTable.DeleteShipComponent(position);
            Assert.IsFalse(shipComponents.ContainsKey(position));
        }