1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtQuickTest/quicktest.h>
#include "../shared/util.h"
class tst_geometry_source: public QObject
{
Q_OBJECT
private slots:
void skiptest() { QSKIP("This test will fail, skipping."); };
};
int main(int argc, char **argv)
{
QString message = needSkip();
if (!message.isEmpty()) {
qWarning() << message;
tst_geometry_source skip;
return QTest::qExec(&skip, argc, argv);
}
QTEST_SET_MAIN_SOURCE_PATH
return quick_test_main(argc, argv, "tst_geometry_source", QUICK_TEST_SOURCE_DIR);
}
#include "tst_geometry_source.moc"
|