summaryrefslogtreecommitdiffstats
path: root/tests/systemtests/sys_sensors/sys_sensors.qtt
blob: 5dea4bd8f6eb602496813f0da978bf11d827d0b1 (plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
/****************************************************************************
**
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.  For licensing terms and
** conditions see http://qt.digia.com/licensing.  For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights.  These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3.0 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU General Public License version 3.0 requirements will be
** met: http://www.gnu.org/copyleft/gpl.html.
**
**
** $QT_END_LICENSE$
**
****************************************************************************/

//TESTED_COMPONENT=src/sensors

testcase =  {

// The user opens a list of available sensor types and then selects one sensor. MTMW-98 - QML API: Sensor instance item

    available_sensor_types : function()
    {
        // Test meta data
        testTitle = "Sensors - Available sensor type";
        testBinary = "";
        testGoal = "Verify that list of sensor types and open one sensor";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test steps
        skip('Not implimented yet', SkipAll);
    },


// The user chooses a sensor and views available data.
// MTMW-96 - QML API: xReading class
// MTMW-95 - QML API: meta-data
// MTMW-97 - QML API: reading properties

    wiew_sensor_data : function()
    {
        // Test meta data
        testTitle = "Sensors - View sensor data";
        testBinary = "";
        testGoal = "Verify that available data can be viewed";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test steps
        skip('Not implimented yet', SkipAll);
    },


// The user changes the values of the sensors such as sample rate etc.
// MTMW-73 - C++ API: sensor control stuff

    change_sensor_values : function()
    {
        // Test meta data
        testTitle = "Sensors - Change sensor values";
        testBinary = "";
        testGoal = "Verify that sensor values can be changed";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test steps
        skip('Not implimented yet', SkipAll);
    },


// The user uses a QML sensor application which accepts sensor data at 100 samples per second
// and a QML refresh rate of 60 Hz without noticing any UI stutter.
// MTMW-93 - QML API: buffering

    sensor_performance : function()
    {
        // Test meta data
        testTitle = "Sensors - Sensor performance";
        testBinary = "";
        testGoal = "Verify sensor buffering";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test steps
        skip('Not implimented yet', SkipAll);
    },


// The user changes the orientation of the device and the application under test retains the correct
// proportions and correct x, y and z orientation relative to the device.
// MTMW-72 - C++ API: Sensor alignment

    sensor_alignment : function()
    {
        // Test meta data
        testTitle = "Sensors - Sensor alignment";
        testBinary = "";
        testGoal = "Verify sensor values align with orientation of the device";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test steps
        skip('Not implimented yet', SkipAll);
    },


// The user un-registers a sensor which is currently in use, the user will then receive an alert dialog confirming this.
// MTMW-31 - Handle unregistering a sensor that is in use

    unregister_sensor : function()
    {
        // Test meta data
        testTitle = "Sensors - Unregister Sensor";
        testBinary = "";
        testGoal = "Verify unregistering a sensor which is in use";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test steps
        skip('Not implimented yet', SkipAll);
    },


// The user changes the sensor sample rate from the default to some other arbitrary rate.
// MTMW-33 - Down-sample sensor data in the API

    down_sample_sensor_data : function()
    {
        // Test meta data
        testTitle = "Sensors - Down Sample Sensor Data";
        testBinary = "";
        testGoal = "Verify Down-sampling of sensor data";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test steps
        skip('Not implimented yet', SkipAll);
    },


// The user opens several sensors and is able to synchronize the sampling rate from the open sensors.
// MTMW-32 - Synchronized sensors

    synchronized_sensors : function()
    {
        // Test meta data
        testTitle = "Sensors - Synchronized_Sensors";
        testBinary = "";
        testGoal = "Verify synchronization of data from several sensors";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test steps
        skip('Not implimented yet', SkipAll);
    },


// The user receives errors for failures in the sensor operation.
// MTMW-77 - C++ API: Return error codes

    sensor_error_codes : function()
    {
        // Test meta data
        testTitle = "Sensors - Sensor Error Codes";
        testBinary = "";
        testGoal = "Verify display of sensor error codes";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test steps
        skip('Not implimented yet', SkipAll);
    },

    generic_rotation: function()
    {
        // Test meta data
        testTitle = "Sensor - Generic Rotation";
        testBinary = "Sensor Explorer";
        testSource = "$MOBILITYDIR/examples/sensors/sensor_explore";
        testGoal = "Verify Generic Rotation values";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test Steps
        prompt(twiki("---+++ " + testTitle + "<br><br>
            *Goal:* " + testGoal + "<br>
            *Pre-Requisites:* " + testPreconditions + "<br>
            *Tested Binary:* " + testBinary + "<br>
            *Requirements:* " + testRequirements + "<br>

            | *Step* | *Verification* |
            | Launch " + testBinary + " | Test application started successfully |
            | Select *generic.rotation* from the sensors list | |
            | In *Sensor Properties* click *Start* | |
            | Position device flat on its back with screen showing upwards | Verify that values for x, y and z gravitate around zero* |
            | Rotate device on x axis toward user | Verify that x axis value increases from 0 all the way to 90 when held straight up |
            | Keep rotating device past vertical position | Verify that x axis value decrees from 90 down towards to 0 when held upside down (screen towards ground)  |
            | Return device flat on its back with screen showing upwards | Verify that value for x has returned to zero** |
            | Rotate device on y axis to right side | Verify that y axis value increases from 0 all the way to 90 when held straight up |
            | Keep rotating device past vertical position | Verify that y axis value keeps increasing from 90 towards 180 |
            | Rotate device on y axis until upside down - screen towards ground | Verify that y axis value gravitates around and switches between 180/-180 |
            | Keep rotating device on y axis past inverted horizontal  | Verify that y axis value rises from -180 towards 0 |
            | | In this test, z values will always be 0<br>Small variations in value due to sensor sensitivity and large precision employed<br>On some Maemo5 devices, due to camera housing, device is not flat when resting on hard surface, so small variation will be present |
        "));
    },

    sym_rotation : function()
    {
        // Test meta data
        testTitle = "Sensor - Sym Rotation";
        testBinary = "Sensor Explorer";
        testSource = "$MOBILITYDIR/examples/sensors/sensor_explore";
        testGoal = "Verify Sym Rotation values";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test Steps
        prompt(twiki("---+++ " + testTitle + "<br><br>
            *Goal:* " + testGoal + "<br>
            *Pre-Requisites:* " + testPreconditions + "<br>
            *Tested Binary:* " + testBinary + "<br>
            *Requirements:* " + testRequirements + "<br>

            | *Step* | *Verification* |
            | Launch " + testBinary + " | Test application started successfully |
            | Select *sym.rotation* from the sensors list | |
            | In *Sensor Properties* click *Start* | |
            | Position device flat on its back with screen showing upwards | Verify that values for x, y and z gravitate around zero* |
            | Rotate device on x axis toward user | Verify that x axis value increases from 0 all the way to 90 when held straight up |
            | Keep rotating device past vertical position | Verify that x axis value decrees from 90 down towards to 0 when held upside down (screen towards ground)  |
            | Return device flat on its back with screen showing upwards | Verify that value for x has returned to zero** |
            | Rotate device on y axis to right side | Verify that y axis value increases from 0 all the way to 90 when held straight up |
            | Keep rotating device past vertical position | Verify that y axis value keeps increasing from 90 towards 180 |
            | Rotate device on y axis until upside down - screen towards ground | Verify that y axis value gravitates around and switches between 180/-180 |
            | Keep rotating device on y axis past inverted horizontal  | Verify that y axis value rises from -180 towards 0 |
            | | In this test, z values will always be 0<br>Small variations in value due to sensor sensitivity and large precision employed<br>On some Maemo5 devices, due to camera housing, device is not flat when resting on hard surface, so small variation will be present |

        "));
    },

    sym_proximity_values: function()
    {
        // Test meta data
        testTitle = "Sensor - Sym Proximity";
        testBinary = "Sensor Explorer";
        testSource = "$MOBILITYDIR/examples/sensors/sensor_explore";
        testGoal = "Verify Sym Proximity values";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test Steps
        prompt(twiki("---+++ " + testTitle + "<br><br>
            *Goal:* " + testGoal + "<br>
            *Pre-Requisites:* " + testPreconditions + "<br>
            *Tested Binary:* " + testBinary + "<br>
            *Requirements:* " + testRequirements + "<br>

            | *Step* | *Verification* |
            | Launch " + testBinary + " | Test application started successfully |
            | Select *sym.proximity* from the sensors list | |
            | In *Sensor Properties* click *Start* | Verify that the value of Index 0 is False |
            | With an open palm of the hand, approach the device where the proximity sensor is located | Verify that the value of Index 0 changes to True once close enough to the device |
            | Move hand away from device | Verify that the value of Index 0 changes to False once again one far enough from device |
        "));
    },

    sym_accelerometer: function()
    {
        // Test meta data
        testTitle = "Sensor - Sym Accelerometer";
        testBinary = "Sensor Explorer";
        testSource = "$MOBILITYDIR/examples/sensors/sensor_explore";
        testGoal = "Verify Sym Accelerometer";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test Steps
        prompt(twiki("---+++ " + testTitle + "<br><br>
            *Goal:* " + testGoal + "<br>
            *Pre-Requisites:* " + testPreconditions + "<br>
            *Tested Binary:* " + testBinary + "<br>
            *Requirements:* " + testRequirements + "<br>

            | *Step* | *Verification* |
            | Launch " + testBinary + " | Test application started successfully |
            | Select *sym.accelerometer* from the sensors list | |
            | Position device flat on a suffice | |
            | In *Sensor Properties* click *Start* | Verify that the reading for x and y values are gravitating around zero and that z is around 9.8  |
            | Lift device on to its x axis | Verify that the value of x changes 0 to 9.8, and that z changes from 9.8 to 0 while y remains 0 |
            | Lift device on to its y axis | Verify that the value of y changes to 9.8, x changes to 0, while z remains 0 |
        "));
     },

    sym_ambient_light: function()
    {
        // Test meta data
        testTitle = "Sensor - Sym Ambient Light Sensor";
        testBinary = "Sensor Explorer";
        testSource = "$MOBILITYDIR/examples/sensors/sensor_explore";
        testGoal = "Verify Sym Ambient Light Sensor";
        testPreconditions = "<br>Hand held torch or other light source required for this test<br>Light sensor located at the top-left of the device";
        testGroups = " ";
        testRequirements = "";

        // Test Steps
        prompt(twiki("---+++ " + testTitle + "<br><br>
            *Goal:* " + testGoal + "<br>
            *Pre-Requisites:* " + testPreconditions + "<br>
            *Tested Binary:* " + testBinary + "<br>
            *Requirements:* " + testRequirements + "<br>

            | *Step* | *Verification* |
            | Launch " + testBinary + " | Test application started successfully |
            | Select *sym.ambientlight* from the sensors list | |
            | In *Sensor Properties* click *Start* | Verify that the reading for Light Level is Light |
            | With the thumb of the left hand, cover the light sensor on the device* | Verify that the value of Index 0 changes from Light through Twilight to Dark |
            | Move hand away from device | Verify that the value of Light Level changes from Dark through Twilight to Light |
            | Take torch and point at face of device  | Verify that the value of Light Level changes from Light to Bright |
            | Move torch in on the light sensor  | Verify that the value of Light Level changes from Bright to Sunny |
            | Move torch away from device | Verify that the value of Light Level changes from Sunny back to Light |
        "));
    },

    freefall_detection : function()
    {
        // Test meta data
        testTitle = "Sensors - Freefall Detection";
        testBinary = "Small Sensors";
        testSource = "$MOBILITYDIR/demos/small_screen_sensors";
        testGoal = "Verify Free Fall Detection";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test Steps
        prompt(twiki("---+++ " + testTitle + "<br><br>
            *Goal:* " + testGoal + "<br>
            *Pre-Requisites:* " + testPreconditions + "<br>
            *Tested Binary:* " + testBinary + "<br>
            *Requirements:* " + testRequirements + "<br>

            | *Step* | *Verification* |
            | Launch " + testBinary + " | Test application started successfully |
            | Select *Free Fall* from menu | |
            | Click on *Setup free fall trigger* | |
            | Drop device from arbitrary hight (Notes:catch device before it hits the ground to preserve device integrity.) | Verify that the value of Free fall time and Hight reflect the the actual test parameters |
        "));
    },

    small_sensor_orientation : function()
    {
        // Test meta data
        testTitle = "Sensors - Small Sensor Orientation";
        testBinary = "Small Sensors";
        testSource = "$MOBILITYDIR/demos/small_screen_sensors";
        testGoal = "Verify Sensor Orientation";
        testPreconditions = "None";
        testGroups = "BAT_MOBILITY";
        testRequirements = "";

        // Test Steps
        prompt(twiki("---+++ " + testTitle + "<br><br>
            *Goal:* " + testGoal + "<br>
            *Pre-Requisites:* " + testPreconditions + "<br>
            *Tested Binary:* " + testBinary + "<br>
            *Requirements:* " + testRequirements + "<br>

            | *Step* | *Verification* |
            | Launch " + testBinary + " | Test application started successfully |
            | Select *Orientation* from menu | |
            | Position device flat down on surface | Verify that device recognizes that it is *Face Up*, all sliders should be in middle position |
            | Lift device on x axis to vertical | Verify that device recognizes that it is *Top Up*, x slider should be in right position and x = 90  |
            | Return device to the starting position | Verify that device recognizes that it is *Face Up*, all sliders should return to the middle position and all values gravitate towards 0 |
            | Lift device on y axis to vertical | Verify that device recognizes that it is *Left Up*, y slider should be in right position and y = 90 |
            | Invert device on x axis to vertical | Verify that device recognizes that it is *Top Down*, x slider should be in left position and x = -90  |
            | Invert device on y axis to vertical | Verify that device recognizes that it is *Right Up*, y slider should be in left position and y = -90 |
            | Turn device upside down (face down) | Verify that device recognizes that it is *Face Down*, y slider should be changing from extreme right to extreme left, and y = -180/+ 180  |
            | Return device to the starting position | Verify that device recognizes that it is *Face Up*, all sliders should be in middle position |
            | | On Harmattan/Meggo devices, z will not change during this test given there is hardware support, this does not apply to Symbian devices and N900 |
             "));
    },

    small_sensor_acceleration : function()
    {
        // Test meta data
        testTitle = "Sensors - Small Sensor Acceleration";
        testGoal = "Verify Sensor Acceleration";
        testBinary = "Small Sensors";
        testSource = "$MOBILITYDIR/demos/small_screen_sensors";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test Steps
        prompt(twiki("---+++ " + testTitle + "<br><br>
            *Goal:* " + testGoal + "<br>
            *Pre-Requisites:* " + testPreconditions + "<br>
            *Tested Binary:* " + testBinary + "<br>
            *Requirements:* " + testRequirements + "<br>

            | *Step* | *Verification* |
            | Launch " + testBinary + " | Test application started successfully |
            | Select *Acceleration* from menu | |
            | Position device flat on working surface | Verify the values displayed are close to: x=0, y=0, z=9.8 |
            | Position device flat on its y axis | Verify the values displayed are close to: x=0, y=9.8, z=0 |
            | Position device flat on its x axis | Verify the values displayed are close to: x=9.8, y=0, z=0 |
            | Position device flat on its z axis | Verify the values displayed are close to: x=0, y=0, z=9.8 |
        "));
    },

    sym_tap : function()
    {
        // Test meta data
        testTitle = "Sensors - Sym Tap";
        testBinary = "testQtSensors";
        testSource = "$MOBILITYDIR/tests/applications/sensors";
        testGoal = "Verify Sym Tap Sensor";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test Steps
        prompt(twiki("---+++ " + testTitle + "<br><br>
            *Goal:* " + testGoal + "<br>
            *Pre-Requisites:* " + testPreconditions + "<br>
            *Tested Binary:* " + testBinary + "<br>
            *Requirements:* " + testRequirements + "<br>

            | *Step* | *Verification* |
            | Launch " + testBinary + " | Test application started successfully |
            | Click on *Sensor Browser* | |
            | Select *sym.tap* as sensor type ||
            | Click on *start* button ||
            | Select *reading properties* tab ||
            | Double tap on the device | Verify the values displayed are changed |
        "));
    },

    sym_orientation : function()
    {
        // Test meta data
        testTitle = "Sensors - Sym Orientation";
        testBinary = "testQtSensors";
        testSource = "$MOBILITYDIR/tests/applications/sensors";
        testGoal = "Verify that sym orientation";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test Steps
        prompt(twiki("---+++ " + testTitle + "<br><br>
            *Goal:* " + testGoal + "<br>
            *Pre-Requisites:* " + testPreconditions + "<br>
            *Tested Binary:* " + testBinary + "<br>
            *Requirements:* " + testRequirements + "<br>

            | *Step* | *Verification* |
            | Launch " + testBinary + " | Test application started successfully |
            | Click on *Sensor Browser* | |
            | Select *sym.orientation* as sensor type | |
            | Click on *start* button | |
            | Select *reading properties* tab | |
            | Slowly rotate the device | Verify the values displayed are changed accordingly |
        "));
    },

    sym_magnetoMeter : function()
    {
        // Test meta data
        testTitle = "sensors - sym magnetoMeter";
        testBinary = "testQtSensors";
        testSource = "$MOBILITYDIR/tests/applications/sensors";
        testGoal = "Verify sym magnetometer sensor";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test Steps
        prompt(twiki("---+++ " + testTitle + "<br><br>
            *Goal:* " + testGoal + "<br>
            *Pre-Requisites:* " + testPreconditions + "<br>
            *Tested Binary:* " + testBinary + "<br>
            *Requirements:* " + testRequirements + "<br>

            | *Step* | *Verification* |
            | Launch " + testBinary + " | Test application started successfully |
            | Click on *Sensor Browser* | |
            | Select *sym.magnetometer* as sensor type | |
            | Click on *start* button | |
            | Select *reading properties* tab | |
            | Put the device closer to a iron or steel object | Verify the values displayed are changed accordingly |
        "));
     },

    sym_compass : function()
    {
        // Test meta data
        testTitle = "sensors - sym compass";
        testBinary = "testQtSensors";
        testSource = "$MOBILITYDIR/tests/applications/sensors";
        testGoal = "Verify sym compass sensor";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test Steps
        prompt(twiki("---+++ " + testTitle + "<br><br>
            *Goal:* " + testGoal + "<br>
            *Pre-Requisites:* " + testPreconditions + "<br>
            *Tested Binary:* " + testBinary + "<br>
            *Requirements:* " + testRequirements + "<br>

            | *Step* | *Verification* |
            | Launch " + testBinary + " | Test application started successfully |
            | Click on *Sensor Browser* | |
            | Select *sym.compass* as sensor type | |
            | Click on *start* button | |
            | Select *reading properties* tab | |
            | Slowly turn the device around | Verify the values displayed are changed accordingly |
        "));
     },

    sym_lux : function()
    {
      // Test meta data
        testTitle = "sensors - sym lux";
        testBinary = "testQtSensors";
        testSource = "$MOBILITYDIR/tests/applications/sensors";
        testGoal = "Verify sym lux sensor";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test Steps
        prompt(twiki("---+++ " + testTitle + "<br><br>
            *Goal:* " + testGoal + "<br>
            *Pre-Requisites:* " + testPreconditions + "<br>
            *Tested Binary:* " + testBinary + "<br>
            *Requirements:* " + testRequirements + "<br>

            | *Step* | *Verification* |
            | Launch " + testBinary + " | Test application started successfully |
            | Click on *Sensor Browser* | |
            | select *sym.luxsensor* as sensor type ||
            | click on *start* button ||
            | select *reading properties* tab ||
            | change the luminance value around the device | Verify the values displayed are changed accordingly |
        "));
     },

    sym_dynamic : function()
    {
        // Test meta data
        testTitle = "sensors - sym dynamic";
        testBinary = "testQtSensors";
        testSource = "$MOBILITYDIR/tests/applications/sensors";
        testGoal = "Verify sym dynamic sensor";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test Steps
        prompt(twiki("---+++ " + testTitle + "<br><br>
            *Goal:* " + testGoal + "<br>
            *Pre-Requisites:* " + testPreconditions + "<br>
            *Tested Binary:* " + testBinary + "<br>
            *Requirements:* " + testRequirements + "<br>

            | *Step* | *Verification* |
            | Register a dynamic sensor device | |
            | Launch " + testBinary + " | Test application started successfully |
            | Click on *Sensor Browser* | Verify the dynamic sensor appears in the sensor list |
            | Click on *start* button | |
            | Select *reading properties* tab | |
            | Change the sensor value depends on the sensor type | Verify the values displayed are changed accordingly |
        "));
     },

    sym_gyroscope : function()
    {
     // Test meta data
        testTitle = "sensors - sym gyroscope";
        testBinary = "testQtSensors";
        testSource = "$MOBILITYDIR/tests/applications/sensors";
        testGoal = "Verify sym gyroscope sensor";
        testPreconditions = "None";
        testGroups = " ";
        testRequirements = "";

        // Test Steps
        prompt(twiki("---+++ " + testTitle + "<br><br>
            *Goal:* " + testGoal + "<br>
            *Pre-Requisites:* " + testPreconditions + "<br>
            *Tested Binary:* " + testBinary + "<br>
            *Requirements:* " + testRequirements + "<br>

            | *Step* | *Verification* |
            | Launch " + testBinary + " | Test application started successfully |
            | Click on *Sensor Browser* | |
            | Select *sym.gyroscope* as sensor type | |
            | Click on *start* button | |
            | Select *reading properties* tab | |
            | Slowly turn and move the device around | Verify the values displayed are changed accordingly |
        "));
    }
}