summaryrefslogtreecommitdiff
path: root/src/tests/mainwindow_test.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-02-28 17:05:37 +0100
committerAndrea Diamantini <adjam7@gmail.com>2010-02-28 17:05:37 +0100
commite5e4ffa0e844c4f1cbe40eeaa309c4711c1073e6 (patch)
treeddfa948cc8a66e60726afd0b226ceb1a98af68f3 /src/tests/mainwindow_test.cpp
parentChanging Findbar parent (diff)
downloadrekonq-e5e4ffa0e844c4f1cbe40eeaa309c4711c1073e6.tar.xz
10 (of 12) tests working and ready to be "expanded"..
Diffstat (limited to 'src/tests/mainwindow_test.cpp')
-rw-r--r--src/tests/mainwindow_test.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/tests/mainwindow_test.cpp b/src/tests/mainwindow_test.cpp
index f5342dfa..90ae26bd 100644
--- a/src/tests/mainwindow_test.cpp
+++ b/src/tests/mainwindow_test.cpp
@@ -21,11 +21,12 @@
#include <qtest_kde.h>
-#include <QtTest>
#include <QtCore>
-#include <QtWebKit>
+#include <QtGui>
+#include <QtTest>
#include "mainwindow.h"
+#include "application.h"
class MainWindowTest : public QObject
@@ -49,14 +50,16 @@ private:
void MainWindowTest::initTestCase()
{
+ window = new MainWindow;
}
void MainWindowTest::cleanupTestCase()
{
+ delete window;
}
// -------------------------------------------
-QTEST_MAIN(MainWindowTest)
+QTEST_KDEMAIN(MainWindowTest,GUI)
#include "mainwindow_test.moc"