diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-02-28 17:05:37 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-02-28 17:05:37 +0100 |
commit | e5e4ffa0e844c4f1cbe40eeaa309c4711c1073e6 (patch) | |
tree | ddfa948cc8a66e60726afd0b226ceb1a98af68f3 /src/tests/mainwindow_test.cpp | |
parent | Changing Findbar parent (diff) | |
download | rekonq-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.cpp | 9 |
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" |