1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
// Copyright (C) 2016 - 2012 Research In Motion
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtQuick/QQuickWindow>
#include <QtQuick/private/qquickrectangle_p.h>
#include <QtQuick/private/qquickwindow_p.h>
#include <qtest.h>
#include <QtTest/QTest>
class tst_qquickwindow : public QObject
{
Q_OBJECT
public:
tst_qquickwindow();
private slots:
void tst_updateCursor();
void cleanupTestCase();
private:
QQuickWindow* window;
};
tst_qquickwindow::tst_qquickwindow()
{
window = new QQuickWindow;
window->resize(250, 250);
window->setPosition(100, 100);
for ( int i=0; i<8000; i++ ) {
QQuickRectangle *r =new QQuickRectangle(window->contentItem());
for ( int j=0; j<10; ++j ) {
new QQuickRectangle(r);
}
}
window->show();
QVERIFY(QTest::qWaitForWindowExposed(window));
}
void tst_qquickwindow::cleanupTestCase()
{
delete window;
}
void tst_qquickwindow::tst_updateCursor()
{
QBENCHMARK {
QQuickWindowPrivate::get(window)->updateCursor(QPoint(100,100));
}
}
QTEST_MAIN(tst_qquickwindow);
#include "tst_qquickwindow.moc"
|