summaryrefslogtreecommitdiffstats
path: root/tests/auto/gui/kernel/qguiapplication/tst_qguiapplication.cpp
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@digia.com>2013-09-25 16:28:24 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-01 18:00:17 +0200
commit2c925906f516e7e47db9e82ed8bda1f675ab414a (patch)
tree2889564f0e285dfb91d2232575599864c6abc942 /tests/auto/gui/kernel/qguiapplication/tst_qguiapplication.cpp
parent3bcc44268e532209314b87a4dbd418022e0a8d0f (diff)
Base tst_QGuiApplication on tst_QCoreApplication to increase GUI ED coverage
The QCoreApplication test has quite a few test cases that we would like to exercise using the GUI event-dispatcher. Instead of duplicating the tests for the GUI dispatcher, we inherit tst_QCoreApplication, which also lets us add extra tests that are specific to tst_QGuiApplication. Change-Id: Ib411457131b8d3fed871f682c1c0568577f6127d Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
Diffstat (limited to 'tests/auto/gui/kernel/qguiapplication/tst_qguiapplication.cpp')
-rw-r--r--tests/auto/gui/kernel/qguiapplication/tst_qguiapplication.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/auto/gui/kernel/qguiapplication/tst_qguiapplication.cpp b/tests/auto/gui/kernel/qguiapplication/tst_qguiapplication.cpp
index 7884426d68..d4237b135f 100644
--- a/tests/auto/gui/kernel/qguiapplication/tst_qguiapplication.cpp
+++ b/tests/auto/gui/kernel/qguiapplication/tst_qguiapplication.cpp
@@ -50,9 +50,11 @@
#include <QDebug>
+#include "tst_qcoreapplication.h"
+
enum { spacing = 50, windowSize = 200 };
-class tst_QGuiApplication: public QObject
+class tst_QGuiApplication: public tst_QCoreApplication
{
Q_OBJECT