Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
6answers
5k views

What unit-testing framework should I use for Qt?

I am just starting up a new project that needs some cross-platform GUI, and we have chosen Qt as the GUI-framework. We need a unit-testing framework, too. Until about a year ago we used an in-house ...
1
vote
1answer
496 views

Build Qt Tests with CMake

Can anyone give me an example of some QT test code and a CMakeLists.txt that build with Cmake and ran with CTest. I can't seem to find any! -Kurtis
1
vote
4answers
2k views

How to run qtestlib unit tests from QtCreator

I am developing a GUI application in Qt Creator and want to write some unit tests for it. I followed This guide to make some unit tests with QtTestlib and the program compiles fine. But how do I run ...
1
vote
1answer
297 views

QTest::keyPress is not returning nativeScanCode

I am simulating F1 key using QTest::keyPress() method to test keypress event, on simulation of F1 key when i check for nativeScanCode, it returns 0 value. can any one help? //Code snippet //To ...
0
votes
0answers
24 views

How can I execute the unit tests of Qt-creator?

I am trying to execute the already existing unit tests of the source of qt-creator, for example the Unit tests of GccParser. All of the unit tests are inside definition WITH_TESTS. e.g: #ifdef ...