Files
RedBear-OS/local/recipes/kde/kf6-kio/source/autotests/commandlauncherjobtest.h
T
2026-04-14 10:51:06 +01:00

40 lines
946 B
C++

/*
This file is part of the KDE libraries
SPDX-FileCopyrightText: 2020 David Faure <faure@kde.org>
SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#ifndef COMMANDLAUNCHERJOBTEST_H
#define COMMANDLAUNCHERJOBTEST_H
#include <QObject>
#include <QStringList>
class CommandLauncherJobTest : public QObject
{
Q_OBJECT
private Q_SLOTS:
void initTestCase();
void startProcessAsCommand_data();
void startProcessAsCommand();
void startProcessWithArgs_data();
void startProcessWithArgs();
void startProcessWithSpacesInExecutablePath_data();
void startProcessWithSpacesInExecutablePath();
void startProcessWithEnvironmentVariables();
void launchingCommandDoesNotFailOnNonExistingExecutable();
void launchingMissingExectubleFail();
void shouldErrorOnEmptyCommand();
void runExecutableInLocalPath();
};
#endif /* COMMANDLAUNCHERJOBTEST_H */