In a way, using MVVM and unit tests solves the UI testing problem by not testing the UI. The ViewModels are an abstraction representing the state and logic behind the UI, so you minimize the amount of ...
I'm currently working on a WPF application utilizing MVVM pattern where my ViewModels contain the view logic for their respective view. I've come to a point, however; where I'm confused on what is ...
You'll need, for example, to start using the pattern Microsoft calls Model-View-Presenter (MVP). MVP is the default pattern used in Windows Forms, ASP.NET Web Forms and WPF applications (though, of ...