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

0001 /*
0002     SPDX-FileCopyrightText: 2014 Kurt Hindenburg <kurt.hindenburg@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef TERMINALINTERFACETEST_H
0008 #define TERMINALINTERFACETEST_H
0009 
0010 #include <KParts/Part>
0011 #include <kde_terminal_interface.h>
0012 
0013 namespace Konsole
0014 {
0015 class TerminalInterfaceTest : public QObject
0016 {
0017     Q_OBJECT
0018 
0019 public:
0020 private Q_SLOTS:
0021     void initTestCase();
0022     void testTerminalInterfaceNoShell();
0023     void testTerminalInterface();
0024     void testTerminalInterfaceV2();
0025 
0026 private:
0027     KParts::Part *createPart();
0028 
0029     KParts::Part *_terminalPart = nullptr;
0030 };
0031 
0032 }
0033 
0034 #endif // TERMINALINTERFACETEST_H