2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 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);
|
2016-05-11 13:02:42 +02:00
|
|
|
TestOutputReader *outputReader(const QFutureInterface<TestResultPtr> &fi,
|
2022-06-10 10:18:34 +02:00
|
|
|
Utils::QtcProcess *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
|