I am familiar with jUnit.
What unit testing framework is very popular for VS?
views:
84answers:
3do u like nUnit over the built in testing framework in VS2008?
bmw0128
2010-03-06 00:19:30
@bmw0128 - any day. xUnit may be better but the builtin one is a pita imho.
Otávio Décio
2010-03-06 00:22:27
I would shy away from the built-in unit test framework that comes with VS 2008 (MSTest). We've been using it on our project over the last 2 years and it's been painful (there is a background test discovery feature that causes the UI to lockup for periods of time occasionally and it adds significant time to every single recompile).+1 to xUnit for me.
Jeremy Wiebe
2010-03-05 18:44:35
+1
A:
If you develop c++ apps with visual studio I can recommend cppunit for unit testing which is a direct port of junit.
Holger Kretzschmar
2010-03-05 18:23:29