Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Geyer <debfx@fobos.de>2012-10-28 18:42:19 +0400
committerFelix Geyer <debfx@fobos.de>2012-10-28 18:42:19 +0400
commit58b6fb36f8c4398ab98f34efd8b2c13edac5019d (patch)
treefe17b742009d05e7234bee7b2875bba7edab0d06 /tests/TestAutoType.h
parent606dbc6eb42f0ca5301335b7f3495a4f64248e21 (diff)
Add missing files for the last commit.
Diffstat (limited to 'tests/TestAutoType.h')
-rw-r--r--tests/TestAutoType.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/TestAutoType.h b/tests/TestAutoType.h
new file mode 100644
index 000000000..10f29867a
--- /dev/null
+++ b/tests/TestAutoType.h
@@ -0,0 +1,39 @@
+/*
+ * Copyright (C) 2012 Felix Geyer <debfx@fobos.de>
+ *
+ * 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 or (at your option)
+ * version 3 of the License.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef KEEPASSX_TESTAUTOTYPE_H
+#define KEEPASSX_TESTAUTOTYPE_H
+
+#include <QtCore/QObject>
+
+class AutoTypePlatformInterface;
+class AutoTypeTestInterface;
+
+class TestAutoType : public QObject
+{
+ Q_OBJECT
+
+private Q_SLOTS:
+ void initTestCase();
+ void testInternal();
+
+private:
+ AutoTypePlatformInterface* m_platform;
+ AutoTypeTestInterface* m_test;
+};
+
+#endif // KEEPASSX_TESTAUTOTYPE_H