vote up 2 vote down star
2

What tools/libraries do you run along with your build to assess and maintain quality?

As part of my CI (Cruise Control) builds I run:
Simian
Nunit
Ncover
Ndepend
FxCop
as part of Nant

I am looking for tools to instrument complexities, metrics, etc .

flag

73% accept rate

7 Answers

vote up 3 vote down check

also dotProfiler and you can use buitin metric in visual studio team suite

link|flag
vote up 2 vote down

ANTS Profiler

link|flag
vote up 2 vote down

The only thing I run as part of my regular build is Nunit, and some simple tweaks to deal with version maintenance.

My view is that the rest of the tools are useful when trying to solve a specific problem, but that you shouldn't spend all your time worrying about arbitrary numbers, "zone of pain", etc.

Don't get me wrong - I very much use the other tools (or variants of them, such as dotTrace) - but more "on demand" (with code coverage being the most regular that I use).

link|flag
2  
Marc, do you know that NDepend can help a lot churning code coverage data? See here: codebetter.com/blogs/patricksmacchia/… – Patrick Smacchia Apr 23 at 7:36
Thanks for the extra info – Marc Gravell Apr 23 at 8:18
vote up 2 vote down

I just heard of StyleCop today on SO

link|flag
vote up 1 vote down

Why don't you use some NDepend's CQL rules to address all facets of quality (metric, structure, coverage, evolution, side effects, dead code, naming coherence...). All this is described on this post: Write active conventions on your code base

link|flag
vote up 1 vote down

One I saw yesterday
Vil

link|flag
vote up 0 vote down

UppercuT.

It uses the following to analyze code:

  • NUnit OR MbUnit
  • NCover
  • NDepend

UppercuT uses NAnt to build and it is the insanely easy to use Build Framework!

http://code.google.com/p/uppercut/

Some good explanations here: UppercuT

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.