File: tst_geometry_source.cpp

package info (click to toggle)
qt6-quick3dphysics 6.9.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,116 kB
  • sloc: cpp: 261,267; python: 40; makefile: 21
file content (24 lines) | stat: -rw-r--r-- 696 bytes parent folder | download | duplicates (2)
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"