2 #ifndef QTREACTOR_TEST_H
3 #define QTREACTOR_TEST_H
6 #include /**/ <QtWidgets/QApplication>
8 #include /**/ <QtGui/QApplication>
11 #include <QtCore/qtimer.h>
13 class QTestApplication
: public QApplication
17 typedef QApplication inherited
;
19 QTestApplication( int argc
, char *argv
[] );
20 virtual void exec( int msec
= 0 );
22 virtual void finishTest(); //!< slot to finish the test, connected to finishTimer_
24 QTimer finishTimer_
; //!< timer to finish the test
27 #endif /*QTREACTOR_TEST_H*/