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-06-01 16:22:50 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2018-02-01 09:17:56 +01:00
|
|
|
#include "itestframework.h"
|
|
|
|
|
|
2023-07-27 16:40:46 +02:00
|
|
|
namespace Autotest::TestFrameworkManager {
|
2019-08-19 10:55:32 +02:00
|
|
|
|
2023-07-27 16:40:46 +02:00
|
|
|
void registerTestFramework(ITestFramework *framework);
|
|
|
|
|
void registerTestTool(ITestTool *testTool);
|
2020-03-26 09:21:25 +01:00
|
|
|
|
2023-07-27 16:40:46 +02:00
|
|
|
ITestFramework *frameworkForId(Utils::Id frameworkId);
|
|
|
|
|
ITestTool *testToolForId(Utils::Id testToolId);
|
|
|
|
|
ITestTool *testToolForBuildSystemId(Utils::Id buildSystemId);
|
|
|
|
|
void activateFrameworksAndToolsFromSettings();
|
|
|
|
|
const TestFrameworks registeredFrameworks();
|
|
|
|
|
const TestTools registeredTestTools();
|
2020-03-26 09:21:25 +01:00
|
|
|
|
2020-03-13 13:54:33 +01:00
|
|
|
|
2023-07-27 16:40:46 +02:00
|
|
|
} // Autotest::TestFrameworkManager
|