public void AddDeliveryPointShouldAddDeliveryPoint() { var storagePoint = new StoragePoint { Name = "AV01" }; _storageSystem.AddDeliveryPoint(storagePoint); _storageSystem.DeliveryPoints.Count.Should().Be(1); var deliveryPoint = _storageSystem.DeliveryPoints.First(); deliveryPoint.Name.Should().Be("AV01"); }