forked from qt-creator/qt-creator
BaseAspect::setEnabler requires the settings to be read already. This is because readSettings() does not emit "valueChanged", and so the connections from the enabler to the target are not triggered. Change-Id: I0c95e2b516cd03c1dbad653288b44510ec7ea800 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
22 lines
659 B
C++
22 lines
659 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "itestframework.h"
|
|
|
|
namespace Autotest::TestFrameworkManager {
|
|
|
|
void registerTestFramework(ITestFramework *framework);
|
|
void registerTestTool(ITestTool *testTool);
|
|
|
|
ITestFramework *frameworkForId(Utils::Id frameworkId);
|
|
ITestTool *testToolForId(Utils::Id testToolId);
|
|
ITestTool *testToolForBuildSystemId(Utils::Id buildSystemId);
|
|
void activateFrameworksAndToolsFromSettings();
|
|
const TestFrameworks registeredFrameworks();
|
|
const TestTools registeredTestTools();
|
|
|
|
|
|
} // Autotest::TestFrameworkManager
|