mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
36 lines
783 B
C++
36 lines
783 B
C++
|
// Copyright (C) 2016 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||
|
|
||
|
|
||
|
#include <QTest>
|
||
|
|
||
|
class tst_SkipInitData: public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
private slots:
|
||
|
void initTestCase_data() const;
|
||
|
void initTestCase() const;
|
||
|
void aTestFunction() const;
|
||
|
};
|
||
|
|
||
|
void tst_SkipInitData::initTestCase_data() const
|
||
|
{
|
||
|
QSKIP("Skip inside initTestCase_data. This should skip all tests in the class.");
|
||
|
}
|
||
|
|
||
|
void tst_SkipInitData::initTestCase() const
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/*! \internal
|
||
|
This function should never be run because initTestCase fails.
|
||
|
*/
|
||
|
void tst_SkipInitData::aTestFunction() const
|
||
|
{
|
||
|
qDebug() << "ERROR: this function is NOT supposed to be run.";
|
||
|
}
|
||
|
|
||
|
QTEST_APPLESS_MAIN(tst_SkipInitData)
|
||
|
|
||
|
#include "tst_skipinitdata.moc"
|