qt5base-lts/tests/auto/testlib/selftests/datetime/tst_datetime.cpp
Lucie Gérard 05fc3aef53 Use SPDX license identifiers
Replace the current license disclaimer in files by
a SPDX-License-Identifier.
Files that have to be modified by hand are modified.
License files are organized under LICENSES directory.

Task-number: QTBUG-67283
Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
2022-05-16 16:37:38 +02:00

52 lines
1.3 KiB
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 <QtCore/QCoreApplication>
#include <QtCore/QDateTime>
#include <QTest>
/*!
\internal
*/
class tst_DateTime: public QObject
{
Q_OBJECT
private slots:
void dateTime() const;
void qurl() const;
void qurl_data() const;
};
void tst_DateTime::dateTime() const
{
const QDateTime utc(QDate(2000, 5, 3), QTime(4, 3, 4), Qt::UTC);
const QDateTime local(QDate(2000, 5, 3), QTime(4, 3, 4), Qt::OffsetFromUTC, 120 /* 2 minutes */);
QCOMPARE(local, utc);
}
void tst_DateTime::qurl() const
{
QFETCH(QUrl, operandA);
QFETCH(QUrl, operandB);
QCOMPARE(operandA, operandB);
}
void tst_DateTime::qurl_data() const
{
QTest::addColumn<QUrl>("operandA");
QTest::addColumn<QUrl>("operandB");
QTest::newRow("empty urls") << QUrl() << QUrl();
QTest::newRow("empty rhs") << QUrl(QLatin1String("http://example.com")) << QUrl();
QTest::newRow("empty lhs") << QUrl() << QUrl(QLatin1String("http://example.com"));
QTest::newRow("same urls") << QUrl(QLatin1String("http://example.com")) << QUrl(QLatin1String("http://example.com"));
}
QTEST_MAIN(tst_DateTime)
#include "tst_datetime.moc"