File indexing completed on 2024-04-28 05:50:34

0001 /*
0002     SPDX-FileCopyrightText: 2013 Kurt Hindenburg <kurt.hindenburg@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef KEYBOARDTRANSLATORTEST_H
0008 #define KEYBOARDTRANSLATORTEST_H
0009 
0010 #include "keyboardtranslator/KeyboardTranslator.h"
0011 #include <QObject>
0012 
0013 namespace Konsole
0014 {
0015 class KeyboardTranslatorTest : public QObject
0016 {
0017     Q_OBJECT
0018 
0019 private Q_SLOTS:
0020     void testEntryTextWildcards();
0021     void testEntryTextWildcards_data();
0022     void testFallback();
0023     void testHexKeys();
0024 };
0025 
0026 }
0027 
0028 #endif // KEYBOARDTRANSLATORTEST_H