summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/text/qstring_no_cast_from_bytearray/tst_qstring_no_cast_from_bytearray.cpp
blob: e933fe49d350f9013820cf09d9de09148ec78b4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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>
#include <QtCore/QtCore>

class tst_QString_NoCastFromByteArray: public QObject
{
    Q_OBJECT
private Q_SLOTS:
    void initTestCase();
};

void tst_QString_NoCastFromByteArray::initTestCase()
{
    qWarning("This is a compile test only");
}

QTEST_APPLESS_MAIN(tst_QString_NoCastFromByteArray)

#include "tst_qstring_no_cast_from_bytearray.moc"