Unit testing in C++
-
Hi, I'm looking for a tutorial about Unit testing integrated in Visual studio. I know that Visual Studio 2008 Team suite has the ability to write unit test(the problem is that The unit test is written in managed C++ while my code is written in unmanaged c++). Is there any tutorial? How about another tools(for unmanaged code)? With best regards, Eli
-
Hi, I'm looking for a tutorial about Unit testing integrated in Visual studio. I know that Visual Studio 2008 Team suite has the ability to write unit test(the problem is that The unit test is written in managed C++ while my code is written in unmanaged c++). Is there any tutorial? How about another tools(for unmanaged code)? With best regards, Eli
Hi Eli, I think that you should read the MSDN article Using Testing Tools in Visual Studio Professional Edition[^]. Best regards, Mihai Moga
-
Hi, I'm looking for a tutorial about Unit testing integrated in Visual studio. I know that Visual Studio 2008 Team suite has the ability to write unit test(the problem is that The unit test is written in managed C++ while my code is written in unmanaged c++). Is there any tutorial? How about another tools(for unmanaged code)? With best regards, Eli
Another option is Boost[^]'s Test Library[^] (although it's not managed code).
Steve