diff --git a/src/pimcommonakonadi/collectionpage/autotests/contenttypewidgettest.cpp b/src/pimcommonakonadi/collectionpage/autotests/contenttypewidgettest.cpp index 1f2f085..8bf98e8 100644 --- a/src/pimcommonakonadi/collectionpage/autotests/contenttypewidgettest.cpp +++ b/src/pimcommonakonadi/collectionpage/autotests/contenttypewidgettest.cpp @@ -1,81 +1,81 @@ /* Copyright (c) 2014-2019 Montel Laurent This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "contenttypewidgettest.h" #include "../contenttypewidget.h" #include #include #include #include ContentTypeWidgetTest::ContentTypeWidgetTest(QObject *parent) : QObject(parent) { } ContentTypeWidgetTest::~ContentTypeWidgetTest() { } void ContentTypeWidgetTest::shouldHaveDefaultValue() { PimCommon::ContentTypeWidget widget; QLabel *label = widget.findChild(QStringLiteral("contenttypewidgetlabel")); QVERIFY(label); QComboBox *combo = widget.findChild(QStringLiteral("contentcombobox")); QVERIFY(combo); QVERIFY(combo->count() > 0); QCOMPARE(widget.currentIndex(), 0); } void ContentTypeWidgetTest::shouldChangeComboBoxIndex() { PimCommon::ContentTypeWidget contentType; QComboBox *combo = contentType.findChild(QStringLiteral("contentcombobox")); for (int i = 0; i < combo->count(); ++i) { contentType.setCurrentIndex(i); QCOMPARE(contentType.currentIndex(), i); QCOMPARE(combo->currentIndex(), i); } } void ContentTypeWidgetTest::shouldEmitSignalWhenIndexChanged() { PimCommon::ContentTypeWidget contentType; contentType.show(); QVERIFY(QTest::qWaitForWindowExposed(&contentType)); - QSignalSpy spy(&contentType, SIGNAL(activated(int))); + QSignalSpy spy(&contentType, &PimCommon::ContentTypeWidget::activated); contentType.setCurrentIndex(1); //FIXME //QCOMPARE(spy.at(0).count(), 1); } void ContentTypeWidgetTest::shouldChangeItem() { PimCommon::ContentTypeWidget contentType; contentType.show(); QVERIFY(QTest::qWaitForWindowExposed(&contentType)); QComboBox *combo = contentType.findChild(QStringLiteral("contentcombobox")); for (int i = 0; i < combo->count(); ++i) { contentType.setCurrentIndex(i); QCOMPARE(contentType.currentText(), combo->currentText()); } } QTEST_MAIN(ContentTypeWidgetTest) diff --git a/src/pimcommonakonadi/collectionpage/autotests/incidencesforwidgettest.cpp b/src/pimcommonakonadi/collectionpage/autotests/incidencesforwidgettest.cpp index 5cf3315..4a8ded6 100644 --- a/src/pimcommonakonadi/collectionpage/autotests/incidencesforwidgettest.cpp +++ b/src/pimcommonakonadi/collectionpage/autotests/incidencesforwidgettest.cpp @@ -1,69 +1,69 @@ /* Copyright (c) 2014-2019 Montel Laurent This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "incidencesforwidgettest.h" #include "../incidencesforwidget.h" #include #include #include #include IncidencesForWidgetTest::IncidencesForWidgetTest(QObject *parent) : QObject(parent) { } IncidencesForWidgetTest::~IncidencesForWidgetTest() { } void IncidencesForWidgetTest::shouldHaveDefaultValue() { PimCommon::IncidencesForWidget contentType; QLabel *label = contentType.findChild(QStringLiteral("contentstypelabel")); QVERIFY(label); QComboBox *combo = contentType.findChild(QStringLiteral("contentstypecombobox")); QVERIFY(combo); QVERIFY(combo->count() > 0); QCOMPARE(contentType.currentIndex(), 0); } void IncidencesForWidgetTest::shouldChangeComboBoxIndex() { PimCommon::IncidencesForWidget contentType; QComboBox *combo = contentType.findChild(QStringLiteral("contentstypecombobox")); for (int i = 0; i < combo->count(); ++i) { contentType.setCurrentIndex(i); QCOMPARE(contentType.currentIndex(), i); QCOMPARE(combo->currentIndex(), i); } } void IncidencesForWidgetTest::shouldEmitSignalWhenIndexChanged() { PimCommon::IncidencesForWidget contentType; contentType.show(); QVERIFY(QTest::qWaitForWindowExposed(&contentType)); - QSignalSpy spy(&contentType, SIGNAL(currentIndexChanged(int))); + QSignalSpy spy(&contentType, &PimCommon::IncidencesForWidget::currentIndexChanged); contentType.setCurrentIndex(1); QCOMPARE(spy.at(0).count(), 1); } QTEST_MAIN(IncidencesForWidgetTest)