public void Execute()
        {
            try
            {
                _currentValue = _sut.GetProperty(_position, _key);
            }
            catch (Exception)
            {
                _currentValue = null;
            }

            _sut.SetProperty(_position, _key, _value);
        }