summaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-02-28 12:36:32 +0100
committerAndrea Diamantini <adjam7@gmail.com>2010-02-28 12:36:32 +0100
commit24a64d92d7444829edb77ba50ac618b6b0067b9d (patch)
tree6ec935393b4d9ec9c003d685d237946ce9a1a6c7 /src/tests
parentAll the other (blank) tests.. (diff)
downloadrekonq-24a64d92d7444829edb77ba50ac618b6b0067b9d.tar.xz
Changing Findbar parent
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/findbar_test.cpp15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/tests/findbar_test.cpp b/src/tests/findbar_test.cpp
index 0e332b6a..3fb0e244 100644
--- a/src/tests/findbar_test.cpp
+++ b/src/tests/findbar_test.cpp
@@ -26,7 +26,7 @@
#include <QtWebKit>
#include "findbar.h"
-
+#include "mainwindow.h"
class FindBarTest : public QObject
@@ -38,7 +38,8 @@ public slots:
void cleanupTestCase();
private slots:
-
+ void matchCase();
+ void notifyMatch();
private:
FindBar *bar;
@@ -50,13 +51,23 @@ private:
void FindBarTest::initTestCase()
{
+ MainWindow *w = new MainWindow;
+ bar = new FindBar(w);
}
void FindBarTest::cleanupTestCase()
{
+ delete bar;
}
+void FindBarTest::matchCase()
+{
+}
+
+void FindBarTest::notifyMatch()
+{
+}
// -------------------------------------------