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:
authorFlorian Geyer <blueice@fobos.de>2012-11-02 18:07:44 +0400
committerFlorian Geyer <blueice@fobos.de>2012-11-02 18:09:54 +0400
commit8347fd36ba235d03c61b166ed58c42869d96c30d (patch)
treea9dcbb8943813e2a266fde5485a3c08c14fe0e63 /tests/TestAutoType.h
parent848abfc1a7d7c106bcb37d921f93f610095c14b6 (diff)
More auto-type tests.
Diffstat (limited to 'tests/TestAutoType.h')
-rw-r--r--tests/TestAutoType.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/TestAutoType.h b/tests/TestAutoType.h
index f7affaef6..9f4445ae9 100644
--- a/tests/TestAutoType.h
+++ b/tests/TestAutoType.h
@@ -23,6 +23,7 @@
class AutoType;
class AutoTypePlatformInterface;
class AutoTypeTestInterface;
+class Database;
class Entry;
class Group;
@@ -33,14 +34,19 @@ class TestAutoType : public QObject
private Q_SLOTS:
void initTestCase();
void init();
+ void cleanup();
+
void testInternal();
void testAutoTypeWithoutSequence();
void testAutoTypeWithSequence();
+ void testGlobalAutoTypeWithNoMatch();
+ void testGlobalAutoTypeWithOneMatch();
private:
AutoTypePlatformInterface* m_platform;
AutoTypeTestInterface* m_test;
AutoType* m_autoType;
+ Database* m_db;
Group* m_group;
Entry* m_entry;
};