When creating a test project for a Silverlight MVVM application, should I create a standard C# test project – aimed at the ViewModel, or a Silverlight Test project aimed at the view, or (gulp) both…
When creating a test project for a Silverlight MVVM application, should I create a
Share
In order to test Silverlight, you will need to create a Silverlight class library project … you will not be able to create a ‘standard’ test project, as Silverlight uses a stripped-down framework, and has alternate dependency requirements. For example, Silverlight references mscorlib … you will not be able to add this easily to a ‘standard’ project, as this reference is controlled by project template.
ib.