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.
Asked
Active
Viewed 264 times
1 Answers
3
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
- 225,310
- 48
- 427
- 736
-
This is exactly what I was looking for, thanks for finding this! – MatthewMartin Jul 21 '10 at 13:15
-
1Anyone know of a similar application for Java? – ryanbrainard Apr 02 '11 at 17:05