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.
QTest is the only framework I know of for unit testing UI components. We've used it with some success but stick to Boost.Test for our regular unit testing.
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 for QCOMPARE
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 of a
and b
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With