2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2016-05-11 13:02:42 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "../testconfiguration.h"
|
|
|
|
|
|
|
|
|
|
namespace Autotest {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2017-09-29 15:01:32 +02:00
|
|
|
class QuickTestConfiguration : public DebuggableTestConfiguration
|
2016-05-11 13:02:42 +02:00
|
|
|
{
|
|
|
|
|
public:
|
2020-03-26 10:11:39 +01:00
|
|
|
explicit QuickTestConfiguration(ITestFramework *framework);
|
2023-05-03 16:00:22 +02:00
|
|
|
TestOutputReader *createOutputReader(Utils::Process *app) const override;
|
2017-09-01 14:59:39 +02:00
|
|
|
QStringList argumentsForTestRunner(QStringList *omitted = nullptr) const override;
|
2018-08-29 12:33:15 +02:00
|
|
|
Utils::Environment filteredEnvironment(const Utils::Environment &original) const override;
|
2016-05-11 13:02:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Autotest
|