summaryrefslogtreecommitdiff
path: root/src/tests/walletbar_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/walletbar_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/walletbar_test.cpp')
-rw-r--r--src/tests/walletbar_test.cpp9
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"