Tagged Questions

30
votes
11answers
11k views

Comparison of c++ unit test frameworks

I know there are already a few questions regarding recomendations for c++ unit test frameworks, but all the answers did not help as they just recomend one of the frameworks but do not provide any ...
24
votes
2answers
870 views

GoogleTest vs CppUnit: The facts

In the process of setting our C++ unit testing framework for the next years we shortlisted GoogleTest and CppUnit. I have some experience with both and my heavy preference is GoogleTest. Anyways to ...
5
votes
2answers
294 views

Unmanaged c++ testing framework integration with Visual Studio 2008 (GUI Test runner)

One thing I like about Visual Studio Unit Testing Framework is that all the unit testing is done from withing the IDE, from class definition to running the test having a graphical green/red bar giving ...
4
votes
3answers
710 views

How to migrate Cppunit tests into GoogleTest?

I have a bunch of module tests written in CPPunit with some mocks created by hand. I am looking for a way to migrate them to GoogleTest as smoothly as possible. Have you tried such an operation? ...
0
votes
1answer
335 views

comparing QTest with other frameworks

Can you compare popular unit test frameworks for C++ with QTest of Qt? (cppunit, boost test, google test etc..) What are the advantages disadvantages? Thank you. note: GUI test is not very ...