summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorAlexis Menard <alexis.menard@nokia.com>2009-06-02 17:45:27 +0200
committerAlexis Menard <alexis.menard@nokia.com>2009-06-02 17:45:27 +0200
commit427c4d6b0a8b3004c86facd382de33c171c0458b (patch)
tree72bccf6460acc4dfa3b3a7a774c302785ba16062 /tests/auto
parent0e139242e5dd465c9ffa0e2cbeb17b7009b821d1 (diff)
Fix all auto-tests regressions.
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp3
-rw-r--r--tests/auto/qgraphicssceneindex/tst_qgraphicssceneindex.cpp4
2 files changed, 5 insertions, 2 deletions
diff --git a/tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp b/tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp
index 0c5ebf6dbd..eb117abfd0 100644
--- a/tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp
+++ b/tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp
@@ -395,6 +395,9 @@ void tst_QGraphicsScene::items()
QGraphicsLineItem *l2 = scene.addLine(0, -5, 0, 5);
QVERIFY(!l1->sceneBoundingRect().intersects(l2->sceneBoundingRect()));
QVERIFY(!l2->sceneBoundingRect().intersects(l1->sceneBoundingRect()));
+ QList<QGraphicsItem *> items;
+ items<<l1<<l2;
+ QCOMPARE(scene.items(), items);
QVERIFY(scene.items(-1, -1, 2, 2).contains(l1));
QVERIFY(scene.items(-1, -1, 2, 2).contains(l2));
}
diff --git a/tests/auto/qgraphicssceneindex/tst_qgraphicssceneindex.cpp b/tests/auto/qgraphicssceneindex/tst_qgraphicssceneindex.cpp
index 3dca152354..6b352ab10e 100644
--- a/tests/auto/qgraphicssceneindex/tst_qgraphicssceneindex.cpp
+++ b/tests/auto/qgraphicssceneindex/tst_qgraphicssceneindex.cpp
@@ -107,8 +107,8 @@ void tst_QGraphicsSceneIndex::sceneRect()
{
QGraphicsScene *scene = new QGraphicsScene();
QGraphicsSceneIndex *index = new QGraphicsSceneBspTreeIndex(scene);
- index->setRect(QRectF(0, 0, 2000, 2000));
- QCOMPARE(index->rect(), QRectF(0, 0, 2000, 2000));
+ scene->setSceneRect(QRectF(0, 0, 2000, 2000));
+ QCOMPARE(index->indexedRect(), QRectF(0, 0, 2000, 2000));
}
void tst_QGraphicsSceneIndex::customIndex_data()