summaryrefslogtreecommitdiffstats
path: root/tests/auto/testlib/selftests/failcleanup/tst_failcleanup.cpp
blob: 2e519e0f912afb9c1e1a38e8ed7cd9065b7bbd01 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include <QTest>

class tst_FailCleanup: public QObject
{
Q_OBJECT
private slots:
    void aTestFunction() const;
    void cleanup() const;
};

void tst_FailCleanup::aTestFunction() const
{
    QVERIFY(true);
}

void tst_FailCleanup::cleanup() const
{
    QVERIFY2(false, "Fail inside cleanup");
}

QTEST_APPLESS_MAIN(tst_FailCleanup)
#include "tst_failcleanup.moc"