mirror of
https://github.com/KDE/konsole.git
synced 2026-06-11 07:26:10 -04:00
https://community.kde.org/Policies/Licensing_Policy#SPDX_Statements https://community.kde.org/Guidelines_and_HOWTOs/Licensing
31 lines
536 B
C++
31 lines
536 B
C++
/*
|
|
SPDX-FileCopyrightText: 2013 Kurt Hindenburg <kurt.hindenburg@gmail.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef KEYBOARDTRANSLATORTEST_H
|
|
#define KEYBOARDTRANSLATORTEST_H
|
|
|
|
#include "keyboardtranslator/KeyboardTranslator.h"
|
|
#include <QObject>
|
|
|
|
namespace Konsole
|
|
{
|
|
|
|
class KeyboardTranslatorTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
void testEntryTextWildcards();
|
|
void testEntryTextWildcards_data();
|
|
void testFallback();
|
|
void testHexKeys();
|
|
};
|
|
|
|
}
|
|
|
|
#endif // KEYBOARDTRANSLATORTEST_H
|
|
|