mirror of
https://github.com/KDE/konsole.git
synced 2026-06-11 15:35:09 -04:00
https://community.kde.org/Policies/Licensing_Policy#SPDX_Statements https://community.kde.org/Guidelines_and_HOWTOs/Licensing
31 lines
431 B
C++
31 lines
431 B
C++
/*
|
|
SPDX-FileCopyrightText: 2013 Kurt Hindenburg <kurt.hindenburg@gmail.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef TERMINALTEST_H
|
|
#define TERMINALTEST_H
|
|
|
|
#include <kde_terminal_interface.h>
|
|
|
|
namespace Konsole
|
|
{
|
|
|
|
class TerminalTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
void testScrollBarPositions();
|
|
void testColorTable();
|
|
void testSize();
|
|
|
|
private:
|
|
};
|
|
|
|
}
|
|
|
|
#endif // TERMINALTEST_H
|
|
|