Reputation: 2261
Can I use Microsoft::VisualStudio::TestTools::UnitTesting to test C++ code? I mean I already have an existing C++ project which doesn't use .NET.
Now I want to write unit tests to test this code.
Can I use UnitTesting framework from Microsoft to test this native Cpp code?
Thanks a lot
Best Regards, Marc
Upvotes: 1
Views: 513
Reputation: 4647
Yes but with some more additions
"CppUnitTest.h"
ofcourse$(VCInstallDir)UnitTest\lib
$(VCInstallDir)UnitTest\include
Hope that helps
Upvotes: 1