0
votes
2answers
416 views

How do I unit test errors in an IDataErrorInfo business object?

I am writing (attempting to write) unit tests for a WPF application. The business objects that the UI binds to implement IDataErrorInfo, such that when I set ValidatesOnDataErrors=True in my View ...
-1
votes
2answers
558 views

How to unit test IDataErrorInfo?

I am reading Asp.net MVC Framework and I am reading about IDataErrorInfo as form of validation. So I am just going to post what he has. Product Class using System; using System.Collections.Generic; ...