summaryrefslogtreecommitdiffstats
path: root/tests/auto/animation/channelmapping/tst_channelmapping.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/animation/channelmapping/tst_channelmapping.cpp')
-rw-r--r--tests/auto/animation/channelmapping/tst_channelmapping.cpp14
1 files changed, 1 insertions, 13 deletions
diff --git a/tests/auto/animation/channelmapping/tst_channelmapping.cpp b/tests/auto/animation/channelmapping/tst_channelmapping.cpp
index 5c04c7f89..35ffcb10a 100644
--- a/tests/auto/animation/channelmapping/tst_channelmapping.cpp
+++ b/tests/auto/animation/channelmapping/tst_channelmapping.cpp
@@ -79,7 +79,7 @@ private Q_SLOTS:
QCOMPARE(backendMapping.isEnabled(), mapping.isEnabled());
QCOMPARE(backendMapping.channelName(), mapping.channelName());
QCOMPARE(backendMapping.targetId(), mapping.target()->id());
- QCOMPARE(backendMapping.property(), mapping.property());
+ QVERIFY(qstrcmp(backendMapping.propertyName(), mapping.property().toLatin1().constData()) == 0);
QVERIFY(qstrcmp(backendMapping.propertyName(), "foo") == 0);
QCOMPARE(backendMapping.componentCount(), 2);
QCOMPARE(backendMapping.type(), static_cast<int>(QVariant::Vector2D));
@@ -114,7 +114,6 @@ private Q_SLOTS:
QCOMPARE(backendMapping.isEnabled(), false);
QCOMPARE(backendMapping.channelName(), QString());
QCOMPARE(backendMapping.targetId(), Qt3DCore::QNodeId());
- QCOMPARE(backendMapping.property(), QString());
QCOMPARE(backendMapping.propertyName(), nullptr);
QCOMPARE(backendMapping.componentCount(), 0);
QCOMPARE(backendMapping.type(), static_cast<int>(QVariant::Invalid));
@@ -137,7 +136,6 @@ private Q_SLOTS:
QCOMPARE(backendMapping.isEnabled(), false);
QCOMPARE(backendMapping.channelName(), QString());
QCOMPARE(backendMapping.targetId(), Qt3DCore::QNodeId());
- QCOMPARE(backendMapping.property(), QString());
QCOMPARE(backendMapping.propertyName(), nullptr);
QCOMPARE(backendMapping.componentCount(), 0);
QCOMPARE(backendMapping.type(), static_cast<int>(QVariant::Invalid));
@@ -183,16 +181,6 @@ private Q_SLOTS:
QCOMPARE(backendMapping.targetId(), id);
// WHEN
- const QString property(QLatin1String("bar"));
- updateChange = QSharedPointer<Qt3DCore::QPropertyUpdatedChange>::create(Qt3DCore::QNodeId());
- updateChange->setPropertyName("property");
- updateChange->setValue(property);
- backendMapping.sceneChangeEvent(updateChange);
-
- // THEN
- QCOMPARE(backendMapping.property(), property);
-
- // WHEN
updateChange = QSharedPointer<Qt3DCore::QPropertyUpdatedChange>::create(Qt3DCore::QNodeId());
updateChange->setPropertyName("type");
updateChange->setValue(QVariant(static_cast<int>(QVariant::Vector3D)));