summaryrefslogtreecommitdiffstats
path: root/tests/auto/testlib/selftests/pass/tst_pass.cpp
blob: 48b75b2b17c72d2ee091d2b75f0c5b4f0d73cbc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

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

class tst_Pass: public QObject
{
    Q_OBJECT

private slots:
    void testNumber1() const;
    void testNumber2() const;
    void testNumber3() const;
};

void tst_Pass::testNumber1() const
{
}

void tst_Pass::testNumber2() const
{
}

void tst_Pass::testNumber3() const
{
}

QTEST_MAIN(tst_Pass)

#include "tst_pass.moc"