public void Fires_PropertyChange_Notification()
        {
            var viewModel = new UserDataViewModel();

            viewModel.AssertThatProperty(x => x.SelectedKeyValue).RaisesChangeNotification();
            viewModel.AssertThatProperty(x => x.CurrentLicense).RaisesChangeNotification();
        }