mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-07-04 16:25:27 +08:00
qt 6.5.1 original
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#####################################################################
|
||||
## tst_qstringbuilder4 Test:
|
||||
#####################################################################
|
||||
|
||||
qt_internal_add_test(tst_qstringbuilder4
|
||||
SOURCES
|
||||
tst_qstringbuilder4.cpp
|
||||
)
|
@ -0,0 +1,37 @@
|
||||
// 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 <QtCore/qglobal.h>
|
||||
|
||||
// SCENARIO 4
|
||||
// this is the "full" version. Operator+ is replaced by a QStringBuilder
|
||||
// based version
|
||||
// with NO_CAST * _not_ defined
|
||||
#define QT_USE_QSTRINGBUILDER
|
||||
#undef QT_NO_CAST_FROM_ASCII
|
||||
#undef QT_NO_CAST_TO_ASCII
|
||||
|
||||
#include <QtCore/QObject>
|
||||
#include <QtCore/QString>
|
||||
#include <QtCore/QStringBuilder>
|
||||
#include <QtTest/QTest>
|
||||
|
||||
#define LITERAL "some literal"
|
||||
|
||||
void runScenario(); // Defined in stringbuilder.cpp #included below.
|
||||
|
||||
class tst_QStringBuilder4 : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
private slots:
|
||||
void scenario() { runScenario(); }
|
||||
};
|
||||
|
||||
#define P +
|
||||
#include "../qstringbuilder1/stringbuilder.cpp"
|
||||
#undef P
|
||||
|
||||
#include "tst_qstringbuilder4.moc"
|
||||
|
||||
QTEST_APPLESS_MAIN(tst_QStringBuilder4)
|
Reference in New Issue
Block a user