summaryrefslogtreecommitdiffstats
path: root/tests/auto/testlib/selftests/singleskip/tst_singleskip.cpp
blob: c5307fed7046c1c144c77e681af2687d5f6462cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only


#include <QtCore/QCoreApplication>
#include <QTest>

class tst_SingleSkip: public QObject
{
    Q_OBJECT

private slots:
    void myTest() const;
};

void tst_SingleSkip::myTest() const
{
    QSKIP("skipping test");
}

QTEST_MAIN(tst_SingleSkip)

#include "tst_singleskip.moc"