views:

49

answers:

3

I could not find the Test Project in the VS2008.

Can anyone point me out what components I need to install?

PS: I cannot afford the Resharper.

A: 

Which edition of Visual Studio 2008 are you using? Test Projects are supported in Professional and above, but not Express - I don't think they're in Standard either.

(Note that Test Projects were only in the Team edition of VS2005, but they got moved to Pro for VS2008.)

Jon Skeet
A: 

Make sure you are using the Team System or Professional edition. Can't afford ReSharper??? Man that's what I call tight budget. Good luck!

Otávio Décio
+1  A: 

Test projects come with the Team and Professional Editions.

I'm going to assmue you have Pro. Information on how to create and run unit tests can be found at msdn: Using Testing Tools in VIsual Studio Professional Edition.

If you don't have Pro or better, then you can grab the nUnit testing framework. It's free and is what MS modeled their framework on.

Chris Lively