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 ...
4
votes
2answers
377 views

QTestLib: Undocumented command line argument -chart

In Qt 4.6 QTestLib supports the command-line argument "-chart" (but this is undocumented). A report.html is created, however neither Firefox 3.6 nor IE8 are able to display anything but the headline ...
2
votes
1answer
350 views

Qt: How do I get the currently running window?

I'm writing a test app which simulates key presses and I would like to get what window is displayed after each key presses. Here's the code block. std::auto_ptr<MyForm> pForm(new MyForm(3,3)); ...
2
votes
1answer
304 views

QT Qtestlib, Unit Test

If I were to create a unit test for class implementation using QTestlib ( trying to figure it out) how would I do it. (I know unit testing for the simple class below can be done other simple way I ...
2
votes
1answer
858 views

Unit Testing in QTestLib - running single test / tests in class / all tests

I'm just starting to use QTestLib. I have gone through the manual and tutorial. Although I understand how to create tests, I'm just not getting how to make those tests convenient to run. My unit test ...
2
votes
1answer
704 views

Help understanding QTest tutorials

In the tutorials for QTestLib, there are references to the files "testgui.moc" and "testqstring.moc" (one example can be found here: ...
1
vote
3answers
228 views

QTcpClient successfully connects, but not to my server. Where is it connecting?

I have successfully built a thin client/server using Qt's Tcp Sockets API. I know it works very well, because I have sent plenty of data over the wire and verified it. However, my project manager ...
1
vote
0answers
84 views

QTestlib unit testing project to access the classes in the main project within QTCreator

I am using QT Creator and want to run my unit tests in a separate project. How do I reference the classes in the main project from my test project?
1
vote
2answers
1k views

How do you get a widget's children in Qt?

I'm simulating keyPresses to an application through Qt's KeyPress function. All the KeyPresses work fine. However when I pass a QT::Key_Enter which is supposed to press the OK button of the currently ...
1
vote
1answer
163 views

QT: unit-testing segmentation fault

Below is a code block for simulating key presses on a menu. I can navigate deep into the menus of my application but when I get back to the main form, I'm getting a segmetation error.... :( first I ...
1
vote
2answers
1k views

QT : get the class name of an object

HI All, I'm writing a test app that simulates key presses of another application. For every key press I have to check if the right window/form is shown. So what I do is get the pointer of the window ...
1
vote
1answer
164 views

QT: simulated unit-testing

Is it possible to run an application and on top of that, you send keyPress events to the app and test the results using qtestlib? If yes, can somebody give me an example how to do it? If no, can ...
1
vote
1answer
973 views

Qtestlib: QNetworkRequest not executed

I would like to test an asynchronous request to a webserver. For that purpose I'm creating a simple unittest to quickly try a few lines of code: void AsynchronousCall::testGet() { ...
0
votes
0answers
60 views

Redmine Automated Testing Plugin

I just installed redmine 1.21 on my own server. While I really like the bug tracking I'm missing some integration for my unit-test framework. I've set up my test framework on QTestlib. Is there any ...
0
votes
1answer
92 views

QTestLib: Problem testing a Target = app

I have a problem with the dependencies in my unit testing project. My project structure is as follows: MyProject |---MyProject.pro |---src | |---src.pro | |---ClassA.h | ...
0
votes
1answer
219 views

How can i terminate a delay / wait condition

I would like to know if there is any way to terminate a wait / delay condition. I am using QTest::qwait(ms) for adding responsive delay in my code. Now i would like to terminate/break this delay. ...
0
votes
1answer
320 views

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 ...
0
votes
2answers
355 views

QTest - Unable to pass Qt::Enter to QPushButton

I'm creating an automated test application using QTest Library. I'm able to simulate key presses on the application except when it gets to a window having QDialogButtonBox (Save, and Cancel). Here's ...
0
votes
1answer
219 views

QT: When to use QT::keyRelease

I'm writing a test app that tests another application with a bunch of menus. I simulate keyPresses by using QT::keyPress. However, at some point it doesn't accept keyPresses anymore, until I learned ...
0
votes
1answer
137 views

QT unit-testing : qtestlib Segmentation fault

I'm writing a test app that would test if the displayed form is the correct form. This is after pressing a key on a menu. Here's a code block where I'm getting a segmentation fault. ...
0
votes
1answer
204 views

QT UI testing : Can't perform QTest::keyPress

I have class "MyForm" which inherited from "QMainWindow". Here's my code: std::auto_ptr<MyForm> pForm(new MyForm(3,3)); QTest::keyPress(&pForm, Qt::Key_0); However when I use ...
0
votes
1answer
174 views

Qtestlib log window

I link my program against the qtestlib and include QTest. But then I get a log-window which prompts all the qDebugs, when the application starts even if I set the configuration to release or debug. Is ...
0
votes
1answer
392 views

How to use QCOMPARE Macro to compare events

I have MyWindow class which popus a blank window, which accepts a mouse click, I need to unit test the mouse click event Code snippet: void TestGui::testGUI_data() { ...