summaryrefslogtreecommitdiff
path: root/src/tests/findbar_test.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-02-28 12:22:25 +0100
committerAndrea Diamantini <adjam7@gmail.com>2010-02-28 12:22:25 +0100
commitd897ce42be8375ffab89615ab3953b8bd3ab3bbc (patch)
tree5998e3d2df0e524ae31c60c0146c046b818e07d5 /src/tests/findbar_test.cpp
parentNew (embrional) unit tests: mainview, tabbar, webtab, webpage (diff)
downloadrekonq-d897ce42be8375ffab89615ab3953b8bd3ab3bbc.tar.xz
All the other (blank) tests..
Diffstat (limited to 'src/tests/findbar_test.cpp')
-rw-r--r--src/tests/findbar_test.cpp64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/tests/findbar_test.cpp b/src/tests/findbar_test.cpp
new file mode 100644
index 00000000..0e332b6a
--- /dev/null
+++ b/src/tests/findbar_test.cpp
@@ -0,0 +1,64 @@
+/*
+ * Copyright 2010 Andrea Diamantini <adjam7@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301 USA
+ */
+
+
+
+#include <qtest_kde.h>
+
+#include <QtTest>
+#include <QtCore>
+#include <QtWebKit>
+
+#include "findbar.h"
+
+
+
+class FindBarTest : public QObject
+{
+ Q_OBJECT
+
+public slots:
+ void initTestCase();
+ void cleanupTestCase();
+
+private slots:
+
+
+private:
+ FindBar *bar;
+};
+
+
+// -------------------------------------------
+
+
+void FindBarTest::initTestCase()
+{
+}
+
+
+void FindBarTest::cleanupTestCase()
+{
+}
+
+
+// -------------------------------------------
+
+QTEST_MAIN(FindBarTest)
+#include "findbar_test.moc"