vote up 2 vote down star

We use FxCop for all of our projects. For our UnitTests I am not sure it is worth it. We end up with many suppresses:

[SuppressMessage("Microsoft.Performance", "CA1822:MarkMembersAsStatic", Justification = SuppressJustifications.CA1822MethodIsUsedExternallyAsNonStatic)]
[SuppressMessage("Microsoft.Usage", "CA1806:DoNotIgnoreMethodResults", MessageId = "Cantaloupe.Seed.Security.RijndaelEncryption", Justification = SuppressJustifications.CA1806MethodIsCalledForExceptionThrowingTest)]

What are people's thoughts on FxCop on Unit test code?

flag

48% accept rate

4 Answers

vote up 4 vote down check

When I teach our unit test / TDD class, I usually tell people to write test code following the same principles as they would when writing prober production code. However, I acknowledge that some of the FxCop rules may generate too much noise.

Couldn't you use a suitable subset of the FxCop rules for the test code?

link|flag
vote up 1 vote down

not worth the effort; FxCop is for production coding standards, not internal test code

(however, it doesn't hurt to give it a run-through and a once-over every now and then, in case it tells you something useful...)

link|flag
Huh? "not worth the effort" is a bit strong I'd say. Why should you treat "internal" code any differnt in quality as "production" code? Enforcing coding standards (they way FxCop can do) is an important part of checking the correctness of code - while surely not the most important or only one. – Christian.K Jan 20 at 6:05
@[Christian.K]: that's why I said it doesn't hurt to do it every now and then, just in case, but there's no reason for full FxCop conformity on unit-test code, or throwaway code, or one-shot utility code, et al. Use your best judgement. – Steven A. Lowe Jan 20 at 15:09
vote up 1 vote down

GO ahead if you have time on your hands. Its not a bad idea to make the cop take a look at all your code.

link|flag
vote up 1 vote down

Yes but you don't have to be a maniac about it. You're tests are your maintenance coder's best friend. If your tests aren't easy to read your maintenance coder will have a hard time of things. I think it helps encourage better habits, unit test code does not have a permissive license to be sloppy.

link|flag

Your Answer

Get an OpenID
or

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