Reputation: 395
I am looking for a unit testing framework that work work on both IDE's as well as from command line. Ideally the framework would include code coverage as well. If anyone has any recommendations to point me in the right direction I'd be extremely grateful. Most of my applciations are MFC apps, if this is any help.
Upvotes: 1
Views: 123
Reputation: 10003
there's a list here: http://en.wikipedia.org/wiki/List_of_unit_testing_frameworks#C.2B.2B - none of them will give you the features of junit unless you can write your tests in managed c++ and use nunit.
related question: Comparison of c++ unit test frameworks
Upvotes: 1