Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / tests / system / sys_elements.qtt
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the test suite of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 //TESTED_COMPONENT=qtdeclarative
43
44 testcase = {
45
46     pre_existing_elements_data: {
47         Rectangle: ["Rectangle"],
48         Image: ["Image"],
49         AnimatedImage: ["AnimatedImage"],
50         BorderImage: ["BorderImage"],
51         SystemPalette: ["SystemPalette"],
52         Text: ["Text"],
53         TextInput: ["TextInput"],
54         TextEdit: ["TextEdit"],
55         FontLoader: ["FontLoader"],
56         Flipable: ["Flipable"],
57         Flickable: ["Flickable"],
58         IntValidator: ["IntValidator"],
59         DoubleValidator: ["DoubleValidator"],
60         RegExpValidator: ["RegExpValidator"],
61         Column: ["Column"],
62         Row: ["Row"],
63         Flow: ["Flow"],
64         Grid: ["Grid"],
65         Repeater: ["Repeater"],
66         ListView: ["ListView"],
67         Keys: ["Keys"],
68         MouseArea: ["MouseArea"],
69         SequentialAnimation: ["SequentialAnimation"],
70         ParallelAnimation: ["ParallelAnimation"],
71         XmlListModel: ["XmlListModel"],
72         Scale: ["Scale"]
73     },
74
75     pre_existing_elements: function(name) {
76         // Test Meta-data
77         testTitle = name+ " Element";
78         testBinary = "qmlscene tests/testapplications/elements/elements.qml";
79         testGoal = "Verify the "+name+" element is shown correctly";
80         testPreconditions = "None";
81         testGroups = "BAT";
82
83         // Test Steps
84         prompt(twiki('---+++ ' + testTitle + '<br><br>
85         *Goal:* ' + testGoal + '<br>
86         *Pre-Requisites:* ' + testPreconditions + '<br>
87         *Tested Binary:* ' + testBinary + '<br>
88     | Select the '+name+' list item | Verify that the '+name+' application is displayed |
89     | Follow the instructions in the in-app test | Verify all steps are completed successfully |'));
90     },
91
92     new_elements_data: {
93         ParticleSystem: ["ParticleSystem"],
94         ImageParticle: ["ImageParticle"],
95         Emitter: ["Emitter"],
96         Affector: ["Affector"],
97         Shape: ["Shape",],
98         TrailEmitter: ["TrailEmitter"],
99         Direction: ["Direction"]
100     },
101
102     new_elements: function(name) {
103         // Test Meta-data
104         testTitle = name+ " Element";
105         testBinary = "qmlscene tests/testapplications/elements/elements.qml";
106         testGoal = "Verify the "+name+" element is shown correctly";
107         testPreconditions = "None";
108         testGroups = "BAT";
109
110         // Test Steps
111         prompt(twiki('---+++ ' + testTitle + '<br><br>
112         *Goal:* ' + testGoal + '<br>
113         *Pre-Requisites:* ' + testPreconditions + '<br>
114         *Tested Binary:* ' + testBinary + '<br>
115     | Select the '+name+' list item | Verify that the '+name+' application is displayed |
116     | Follow the instructions in the in-app test | Verify all steps are completed successfully |'));
117     }
118 }