I am using (or trying) to perform unittesting Silverlight.
everything looks good, but the methods associated with the [TestInitialize] attribute are not called before [TestMethod] . Does anyone know a workaround?
here is an example where the BeforeAnyTest method is never called:
[TestClass] public class TViewModel { protected MockRepository MockRepository { get; set; }
source share