views:

26

answers:

1

I'm looking for .NET static code analysis tools that can detect things like unit tests without an assert, too many asserts in one test, and other anomalies.

+3  A: 

There's Typemock Test Lint.

Although it's produced by Typemock, it's not particularly tied to their commercial Isolator product. As an example, it analyzes my xUnit.net tests that use Moq.

It's free, but only available for Visual Studio 2010.

Mark Seemann
This is exactly what I was looking for, thanks for finding this!
MatthewMartin