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-10-28 21:13:49 +0400
committerFlorian Geyer <blueice@fobos.de>2012-10-28 21:18:24 +0400
commitac56ac98f7286ef7fe17a2483daf5261fd6c4802 (patch)
treec0378a34cba1e11d93942b7afb0323149d5ff919 /tests/TestAutoType.h
parentd7cbec1a02771b213da38a6249603032503d084c (diff)
Extend auto-type test.
Diffstat (limited to 'tests/TestAutoType.h')
-rw-r--r--tests/TestAutoType.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/TestAutoType.h b/tests/TestAutoType.h
index 10f29867a..f7affaef6 100644
--- a/tests/TestAutoType.h
+++ b/tests/TestAutoType.h
@@ -20,8 +20,11 @@
#include <QtCore/QObject>
+class AutoType;
class AutoTypePlatformInterface;
class AutoTypeTestInterface;
+class Entry;
+class Group;
class TestAutoType : public QObject
{
@@ -29,11 +32,17 @@ class TestAutoType : public QObject
private Q_SLOTS:
void initTestCase();
+ void init();
void testInternal();
+ void testAutoTypeWithoutSequence();
+ void testAutoTypeWithSequence();
private:
AutoTypePlatformInterface* m_platform;
AutoTypeTestInterface* m_test;
+ AutoType* m_autoType;
+ Group* m_group;
+ Entry* m_entry;
};
#endif // KEEPASSX_TESTAUTOTYPE_H