public void InspectCommand_InspectSpaceWithContainer_NotifiesContainer()
        {
            var container = new ValuablesContainer {
                ObjectLayer = ObjectLayer.LowerObject
            };

            _layer[0, 0].Put(container);
            var command = new InspectCommand(_map, new XYZ(0, 0, 0), this);

            command.Go();

            Assert.AreEqual(container, _containers.First());
        }
        public void InspectCommand_InspectSpaceWithValuable_NotifiesValuable()
        {
            var valuable = new ValuableFacilityObject {
                ObjectLayer = ObjectLayer.LowerObject
            };

            _layer[0, 0].Put(valuable);
            var command = new InspectCommand(_map, new XYZ(0, 0, 0), this);

            command.Go();

            Assert.AreEqual(valuable, _valuables.First());
        }