aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols/controls/windows/tst_windows.cpp
blob: 560cec43837f5d1ae5ad08a307d6f7c86a10baae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include <QtQuickTest/quicktest.h>
#include <QtQuickControls2/qquickstyle.h>

int main(int argc, char *argv[])
{
    QTEST_SET_MAIN_SOURCE_PATH
    qputenv("QML_NO_TOUCH_COMPRESSION", "1");
    // We have tst_customization::override and its controlNotCustomizable check
    // to ensure that customizing native styles results in warnings,
    // rather than having to ignore specific warnings for each control we customize in tests.
    // We do have the various test_default/test_empty test functions to check
    // that a "default-constructed" control doesn't result in any warnings, but because
    // we set this, those won't be useful for ensuring that customization warnings aren't
    // issued when default-constructing controls. For that we have
    // tst_customization::noCustomizationWarningsForDefaultControls.
    qputenv("QT_QUICK_CONTROLS_IGNORE_CUSTOMIZATION_WARNINGS", "1");
    QQuickStyle::setStyle("Windows");
    return quick_test_main(argc, argv, "tst_controls::Windows", TST_CONTROLS_DATA);
}