QtTest is a Qt module for unit testing Qt applications and libraries.
1
vote
1answer
18 views
Qt test-unit: Error: undefined reference to `imp__ZN5Q…
I am trying to create a "Qt unit test" following this tutuorial. I created a new project: Qt Gui Application with a header file as mentioned and a class that contains the test function. I added ...
0
votes
1answer
77 views
QtTest is failing when comparing strings, Even though they're identical? C++
I have a QtTest that is comparing two string values:
// This definitely returns "5/6"
std::string actual_value = simple(actual);
// Sets a string to the expected value
std::string ...
0
votes
2answers
74 views
Not sure how to use QtTest
I want to do unit testing for some simple exercises i have done in c++ using Qt. i figured using QtTest seemed like a reasonable place to start.
i have a class that returns an integer and i want to ...
-1
votes
1answer
108 views
Testing my class with QTestLib
I need to make some unit test for my school project in Qt and although I have read Qt tutorial on that I can't figure out how am I supposed to write such tests. All of tests shown in tutorial I've ...
5
votes
1answer
164 views
Qt “monkey” Testing - simulate random clicks and keypresses
Is there a framework to simulate a deterministically pseudorandom series of clicks imposed upon a Qt application - in order to try to trigger any memory leaks, threading errors etc - typical ...
1
vote
0answers
132 views
QtCreator subdirs project
I'm going to achieve the following hierarchy in my QtCreator project based on subdirs template:
Project:
subproject1 - static library
subproject2 - static library
subproject3 - unittests ...
8
votes
2answers
288 views
How to structure project while unit-testing Qt app by QTestLib
I got my Qt project and I'm using Qt Creator. I want to unit-test all my code.
However I'm quite new at QTestLib framework but everyone recommended it for testing Qt-based source. Now I'm a little ...
5
votes
2answers
674 views
QtTest Unit Testing, how to add header files located in another project?
Maybe I'm missing something, but it seems really stupid to me that the only tutorial provided for QtTest framework has you testing the QString class.
The typical use case for unit testing ...
0
votes
2answers
180 views
How much does each test case consume in QTest for C++ [closed]
Is there a simply way to knowing how much time consume each test case in QT Test Framework for C++?
It will be incredible helpful to getting some metrics.
2
votes
1answer
368 views
How to compose all QtTestLib unit tests' results in a single file while using a single test project?
In our project we are using the QtTestLib for a unit testing. The reasons are that the whole project already uses Qt whenever it's possible and it's a GUI application, so we wanted to have ability for ...
4
votes
1answer
2k 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
2
votes
4answers
4k 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
449 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 ...
13
votes
9answers
10k 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 ...

