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

0001 /*
0002     SPDX-FileCopyrightText: 2008 Robert Knight <robertknight@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef PARTTEST_H
0008 #define PARTTEST_H
0009 
0010 #include <KParts/Part>
0011 #include <kde_terminal_interface.h>
0012 
0013 namespace Konsole
0014 {
0015 class PartTest : public QObject
0016 {
0017     Q_OBJECT
0018 
0019 private Q_SLOTS:
0020     void initTestCase();
0021     void testFdShell();
0022     void testFdStandalone();
0023 
0024 private:
0025     void testFd(bool runShell);
0026     KParts::Part *createPart();
0027 };
0028 
0029 }
0030 
0031 #endif // PARTTEST_H