aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@theqtcompany.com>2015-09-18 13:40:01 +0200
committerMitch Curtis <mitch.curtis@theqtcompany.com>2015-09-18 14:14:07 +0000
commit0797e0cb2072a0b5cac4d8db2205d932cc64d25c (patch)
tree103fd7a6f67a83bd7b6f44dcc9c2a67547aa2cb2 /tests/benchmarks
parent2ef6a789e9cd91a9245c65201a6fe3d3322712ad (diff)
Merge Qt Quick Extras into Qt Quick Controls
The original split existed because the public and enterprise controls were developed separately. Now that all controls are public and developed together, the split no longer makes sense and is difficult for users to understand. Change-Id: I00420f4d09f8c837232231d03fe818b7b3403fab Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@theqtcompany.com> Reviewed-by: Frederik Gladhorn <frederik.gladhorn@theqtcompany.com> Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'tests/benchmarks')
-rw-r--r--tests/benchmarks/creationtime/tst_creationtime.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/benchmarks/creationtime/tst_creationtime.cpp b/tests/benchmarks/creationtime/tst_creationtime.cpp
index 47416045..9185d5b5 100644
--- a/tests/benchmarks/creationtime/tst_creationtime.cpp
+++ b/tests/benchmarks/creationtime/tst_creationtime.cpp
@@ -50,9 +50,6 @@ private slots:
void calendar();
void calendar_data();
- void extras();
- void extras_data();
-
private:
QQmlEngine engine;
};
@@ -128,20 +125,6 @@ void tst_CreationTime::calendar_data()
addTestRows(engine.importPathList(), "QtQuick/Calendar.2");
}
-void tst_CreationTime::extras()
-{
- QFETCH(QByteArray, control);
- QQmlComponent component(&engine);
- component.setData("import QtQuick.Extras 2.0;" + control + "{}", QUrl());
- doBenchmark(&component);
-}
-
-void tst_CreationTime::extras_data()
-{
- QTest::addColumn<QByteArray>("control");
- addTestRows(engine.importPathList(), "QtQuick/Extras.2");
-}
-
QTEST_MAIN(tst_CreationTime)
#include "tst_creationtime.moc"