Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to unit-tests. I am about to start working on a big project using C#, VS2010. I was wondering if its a good idea to use test-framework that comes with VS2010, or should I look for third party frameworks.

Thanks

share|improve this question

1 Answer

up vote 0 down vote accepted

If the reset of the organization you're in is using MSTest, that's a good reason to use it. If you are doing this on your own, that reasoning is irrelevant.

For third-party frameworks, nUnit works well with VS2010, and it's easy to find information on how to use it. It's the only one I've used, since my previous employer didn't pony up for the MS Test licensing.

The key to using unit test frameworks is learning how to write good tests, not necessarily what tool you use.

For a good overview that uses .NET, I'd recommend Roy Osherove's book, http://www.manning.com/osherove/

Good luck!

share|improve this answer
Thanks, I'll look into that. – Ali Sep 2 '11 at 12:56
if you consider this a reasonable answer, please consider accepting it. – Jennifer S Sep 2 '11 at 13:00
I don't have enough rep to mark an answer... do you know how can I do it? – Ali Sep 2 '11 at 13:33
stackoverflow.com/faq#howtoask This should show you how to click the big check box underneat the big number with the arrows above and below to accept an answer. As the person who asked the question, you should be able to click that. – Jennifer S Sep 2 '11 at 15:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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