aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/shared
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2019-04-24 18:42:25 +0200
committerRobert Loehning <robert.loehning@qt.io>2019-05-20 16:30:38 +0000
commit9956d8d4611775da223a1778295b568bb209a978 (patch)
tree9404d2f4872cc4650b3086787572cbc41238d076 /tests/system/shared
parentfc8dea883033b16527e183ae35d9a4392b98bfe1 (diff)
Squish: Update tst_qtquick_creation
Task-number: QTCREATORBUG-20056 Change-Id: I5a7e239b9c65b32e2bc57dd594cc96bdda94b472 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'tests/system/shared')
-rw-r--r--tests/system/shared/project.py17
1 files changed, 4 insertions, 13 deletions
diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py
index 8a0d69b222..a4be7f14d1 100644
--- a/tests/system/shared/project.py
+++ b/tests/system/shared/project.py
@@ -273,23 +273,14 @@ def createProject_Qt_Console(path, projectName, checks = True, buildSystem = Non
if checks:
__verifyFileCreation__(path, expectedFiles)
-def createNewQtQuickApplication(workingDir, projectName = None,
+def createNewQtQuickApplication(workingDir, projectName=None,
targets=Targets.desktopTargetClasses(), minimumQtVersion="5.6",
- withControls = False, fromWelcome = False, buildSystem = None):
- if withControls:
- template = "Qt Quick Application - Swipe"
- else:
- template = "Qt Quick Application - Empty"
+ template="Qt Quick Application - Empty", fromWelcome=False,
+ buildSystem=None):
available = __createProjectOrFileSelectType__(" Application", template, fromWelcome)
projectName = __createProjectSetNameAndPath__(workingDir, projectName)
__handleBuildSystem__(buildSystem)
- if withControls:
- requiredQt = "5.7"
- # TODO use parameter to define style to choose
- test.log("Using default controls style")
- clickButton(waitForObject(":Next_QPushButton"))
- else:
- requiredQt = __createProjectHandleQtQuickSelection__(minimumQtVersion)
+ requiredQt = __createProjectHandleQtQuickSelection__(minimumQtVersion)
__modifyAvailableTargets__(available, requiredQt)
checkedTargets = __chooseTargets__(targets, available)
snooze(1)