Reputation: 2087
I was TDDing away on my Windows Phone app using Jeff Wilcox's unit testing framework and somewhere along the way, every time I run my tests, it shows a blank screen with "Test assemblies" at the top and showing the total count of my tests as correct, but none of them are running. Any suggestions?
EDIT: It turns out the problem is that I was defining a generic class in my assembly and the test framework was barfing on it. Yikes...
Upvotes: 2
Views: 57
Reputation: 10609
The only time I encountered this was when I had created some test classes that had generics involved. It seems the code that looked for the tests in the assembly bombs pretty badly then.
For example I had tests like
public class ProductViewModelTests : ViewModelTests<ProductViewModel> { ... }
Upvotes: 3