I am trying to unit test my View Model in a WPF MVVM application. This application currently runs correctly when run
My ViewModel implements INotifyPropertyChanged and raises the correct PropertyChanged events When unit testing, the PropertyChanged event is null and therefore throws exceptions
I have gone down a rabbit hole about the Application.Current, but have confirmed it is set while running the unit tests
What do I need to set/mock to prevent this from happening?