More auto-type tests.

This commit is contained in:
Florian Geyer
2012-11-02 15:07:44 +01:00
parent 848abfc1a7
commit 8347fd36ba
4 changed files with 46 additions and 1 deletions

View File

@@ -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;
};