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/walletbar_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/walletbar_test.cpp')
-rw-r--r-- | src/tests/walletbar_test.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/tests/walletbar_test.cpp b/src/tests/walletbar_test.cpp index a3b87710..ec9c3559 100644 --- a/src/tests/walletbar_test.cpp +++ b/src/tests/walletbar_test.cpp @@ -21,9 +21,9 @@ #include <qtest_kde.h> -#include <QtTest> #include <QtCore> -#include <QtWebKit> +#include <QtGui> +#include <QtTest> #include "walletbar.h" @@ -48,11 +48,14 @@ private: void WalletBarTest::initTestCase() { + QWidget *w = new QWidget; + bar = new WalletBar(w); } void WalletBarTest::cleanupTestCase() { + delete bar; } @@ -62,5 +65,5 @@ void WalletBarTest::cleanupTestCase() // ------------------------------------------- -QTEST_MAIN(WalletBarTest) +QTEST_KDEMAIN(WalletBarTest,GUI) #include "walletbar_test.moc" |