diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-02-28 12:36:32 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-02-28 12:36:32 +0100 |
commit | 24a64d92d7444829edb77ba50ac618b6b0067b9d (patch) | |
tree | 6ec935393b4d9ec9c003d685d237946ce9a1a6c7 /src/tests/findbar_test.cpp | |
parent | All the other (blank) tests.. (diff) | |
download | rekonq-24a64d92d7444829edb77ba50ac618b6b0067b9d.tar.xz |
Changing Findbar parent
Diffstat (limited to 'src/tests/findbar_test.cpp')
-rw-r--r-- | src/tests/findbar_test.cpp | 15 |
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() +{ +} // ------------------------------------------- |