summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2019-10-10 14:39:43 +0200
committerPaul Lemire <paul.lemire@kdab.com>2019-10-10 23:57:56 +0200
commitc731ef9f457268b57871bb9cc6fc593975f4eeea (patch)
treee756394416fe1052517d868bf4f005c1cd2c35f2 /tests
parent5eff77db3ade7f407de62952ed0a79371f328096 (diff)
Convert LoadGeometryJob to use direct sync
Change-Id: Id744de2f10e7744ad5a9d4f425ae534153ed7446 Reviewed-by: Mike Krus <mike.krus@kdab.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/render/qmesh/tst_qmesh.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/auto/render/qmesh/tst_qmesh.cpp b/tests/auto/render/qmesh/tst_qmesh.cpp
index 49679e29e..0df96dd24 100644
--- a/tests/auto/render/qmesh/tst_qmesh.cpp
+++ b/tests/auto/render/qmesh/tst_qmesh.cpp
@@ -240,28 +240,6 @@ private Q_SLOTS:
}
- void checkStatusUpdate()
- {
- // GIVEN
- qRegisterMetaType<Qt3DRender::QMesh::Status>("Status");
- MyQMesh mesh;
- QSignalSpy spy(&mesh, SIGNAL(statusChanged(Status)));
-
- // THEN
- QCOMPARE(mesh.status(), Qt3DRender::QMesh::None);
-
- // WHEN
- const Qt3DRender::QMesh::Status newStatus = Qt3DRender::QMesh::Error;
- Qt3DCore::QPropertyUpdatedChangePtr e(new Qt3DCore::QPropertyUpdatedChange(mesh.id()));
- e->setPropertyName("status");
- e->setValue(QVariant::fromValue(newStatus));
- mesh.sceneChangeEvent(e);
-
- // THEN
- QCOMPARE(mesh.status(), newStatus);
- QCOMPARE(spy.count(), 1);
- }
-
void checkGeometryFactoryIsAccessibleEvenWithNoScene() // QTBUG-65506
{
// GIVEN