Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 important for us.

like image 697
trante Avatar asked Feb 02 '11 20:02

trante


2 Answers

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.

like image 147
Edward Strange Avatar answered Oct 06 '22 19:10

Edward Strange


Based on my experiences I cannot recommend Qt test framework. The two possible advantages, what can be mentioned are:

  • QSignalSpy: to verify emitted signals (only useful for Qt), but this can be used also with other testing framework
  • easy to write parametrized tests

The main disadvantages:

  • Fixtures are not supported by default, you have to workaround it in setUp tearDown
  • QCOMPARE cannot compare values with different type. For example comparing two 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.

like image 23
titapo Avatar answered Oct 06 '22 19:10

titapo