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 important for us.
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 important for us.
Based on my experiences I cannot recommend Qt test framework. The two possible advantages, what can be mentioned are:
The main disadvantages:
std::chrono::duration
with different ratio is impossible, although they are equally comparable. It is very annoying to cast just forQCOMPARE
Boost is simple and usable, it works well for most cases, without suprises.
The main advantage of Google test framework is the mocking support. But this feature can be used for other frameworks, as well. It has a lot of great features, like defining expected call sequences, custom matchers, assertions can be human readable. But it takes time to be familiar with these features (assuming that you need them).
I want to mention one more framework: Catch. It is a header-only framework, with very few assertions. Eg.
REQUIRE(a == b)
will work and values ofa
andb
will be resolved on failure. There are no need for fixture classes or boilerplates, you can just define sections in a test case, it will be performed N-times, with different sections. It is very straightforward, human readable. At the other side, it takes time to be compiled by default.