summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2022-09-09 14:25:33 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2022-09-12 11:58:43 +0200
commitc3e0835c205bf787028ddf8bfec7c5e0330adbd0 (patch)
treea8709fb21b6399268c4f29fa6f67f32b70657a8e /tests
parent86f677e81995a5ff6c682c671d7b3009b4ef1e19 (diff)
downloadqtlocation-c3e0835c205bf787028ddf8bfec7c5e0330adbd0.tar.gz
Remove unused QDeclarativePeriod header and QPlacePeriod test
Those classes are neither implemented nor used anywhere. Pick-to: 6.2 Change-Id: I65e3d7be4e67a732e7ba4d2d9998699f77c7f2eb Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qplaceperiod/tst_qplaceperiod.cpp116
1 files changed, 0 insertions, 116 deletions
diff --git a/tests/auto/qplaceperiod/tst_qplaceperiod.cpp b/tests/auto/qplaceperiod/tst_qplaceperiod.cpp
deleted file mode 100644
index 78db5468..00000000
--- a/tests/auto/qplaceperiod/tst_qplaceperiod.cpp
+++ /dev/null
@@ -1,116 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:GPL-EXCEPT$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include <QtCore/QString>
-#include <QtTest/QtTest>
-
-#include <qplaceperiod.h>
-
-QT_USE_NAMESPACE
-
-class tst_QPlacePeriod : public QObject
-{
- Q_OBJECT
-
-public:
- tst_QPlacePeriod();
-
-private Q_SLOTS:
- void constructorTest();
- void startDateTest();
- void startTimeTest();
- void endDateTest();
- void endTimeTest();
- void operatorsTest();
-};
-
-tst_QPlacePeriod::tst_QPlacePeriod()
-{
-}
-
-void tst_QPlacePeriod::constructorTest()
-{
- QPlacePeriod testObj;
- testObj.setStartTime(QTime::currentTime());
- QPlacePeriod *testObjPtr = new QPlacePeriod(testObj);
- QVERIFY2(testObjPtr != NULL, "Copy constructor - null");
- QVERIFY2(testObjPtr->startTime() == testObj.startTime(), "Copy constructor - start time");
- delete testObjPtr;
-}
-
-void tst_QPlacePeriod::startDateTest()
-{
- QPlacePeriod testObj;
- QVERIFY2(testObj.startDate().isNull() == true, "Wrong default value");
- QDate date = QDate::currentDate();
- testObj.setStartDate(date);
- QVERIFY2(testObj.startDate() == date, "Wrong value returned");
-}
-
-void tst_QPlacePeriod::startTimeTest()
-{
- QPlacePeriod testObj;
- QVERIFY2(testObj.startTime().isNull() == true, "Wrong default value");
- QTime time = QTime::currentTime();
- testObj.setStartTime(time);
- QVERIFY2(testObj.startTime() == time, "Wrong value returned");
-}
-
-void tst_QPlacePeriod::endDateTest()
-{
- QPlacePeriod testObj;
- QVERIFY2(testObj.endDate().isNull() == true, "Wrong default value");
- QDate date = QDate::currentDate();
- testObj.setEndDate(date);
- QVERIFY2(testObj.endDate() == date, "Wrong value returned");
-}
-
-void tst_QPlacePeriod::endTimeTest()
-{
- QPlacePeriod testObj;
- QVERIFY2(testObj.endTime().isNull() == true, "Wrong default value");
- QTime time = QTime::currentTime();
- testObj.setEndTime(time);
- QVERIFY2(testObj.endTime() == time, "Wrong value returned");
-}
-
-void tst_QPlacePeriod::operatorsTest()
-{
- QPlacePeriod testObj;
- QTime time = QTime::currentTime();
- testObj.setEndTime(time);
- QPlacePeriod testObj2;
- testObj2 = testObj;
- QVERIFY2(testObj == testObj2, "Not copied correctly");
- testObj.setEndTime(QTime::currentTime().addSecs(102021));
- QVERIFY2(testObj != testObj2, "Object should be different");
-}
-
-QTEST_APPLESS_MAIN(tst_QPlacePeriod);
-
-#include "tst_qplaceperiod.moc"