os/graphics/graphicsapitest/screendriverhaitest/screendriver/scripts/graphics-screendriver-cfbsdrawdevice-automated.script
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
//
sl@0
     2
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
// All rights reserved.
sl@0
     4
// This component and the accompanying materials are made available
sl@0
     5
// under the terms of "Eclipse Public License v1.0"
sl@0
     6
// which accompanies this distribution, and is available
sl@0
     7
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
//
sl@0
     9
// Initial Contributors:
sl@0
    10
// Nokia Corporation - initial contribution.
sl@0
    11
//
sl@0
    12
// Contributors:
sl@0
    13
//
sl@0
    14
// Description:
sl@0
    15
//
sl@0
    16
//! @file
sl@0
    17
//! @SYMTestSuiteName graphics-screendriver-cfbsdrawdevice-automated
sl@0
    18
//! @SYMScriptTestEnvironment This test script requires a basic ROM.
sl@0
    19
// 
sl@0
    20
// Tests all public elements of the CFbsDrawDevice
sl@0
    21
// classes as a means of confidence that the APIs work as expected.
sl@0
    22
// 
sl@0
    23
// The purpose is to provide a regression test suite of PublishedAll
sl@0
    24
// APIs for: CFbsDrawDevice
sl@0
    25
// The tests are fully automated.
sl@0
    26
//
sl@0
    27
sl@0
    28
sl@0
    29
sl@0
    30
LOAD_SUITE t_screendriver
sl@0
    31
sl@0
    32
sl@0
    33
sl@0
    34
sl@0
    35
sl@0
    36
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0001
sl@0
    37
sl@0
    38
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0001
sl@0
    39
//!@SYMAPI
sl@0
    40
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
    41
//!@SYMAuthor			ddamian
sl@0
    42
//!@SYMCreationDate		5/2/2008 
sl@0
    43
//!@SYMTestCaseDesc		Verify WriteRgbMulti with draw mode EDrawModePEN and Display mode EColor64K
sl@0
    44
//!@SYMTestActions
sl@0
    45
//!                1. Create Display (displayMode = EColor64K)
sl@0
    46
//!                2. Initialize Screen
sl@0
    47
//!                3. Set Display Mode
sl@0
    48
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
    49
//!                5. Get available Orientations
sl@0
    50
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
    51
//!                7. Call WriteRGBMulti(drawMode = EDrawModePEN; numRect = 9; delay=100000)
sl@0
    52
//!                8. Destroy screen instance
sl@0
    53
//!@SYMTestStatus		Verified
sl@0
    54
//!@SYMTestPriority		Normal
sl@0
    55
//!@SYMTestExpectedResults
sl@0
    56
//!                Display mode is set to Ecolor64K without any Error. Orientation is set properly without error. The given color is written to the specified rectangle on display.
sl@0
    57
//!@SYMTestType			CIT
sl@0
    58
sl@0
    59
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
    60
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
    61
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0001-0001-NewScreenDeviceL_command01
sl@0
    62
		COMMAND		scrndrv		InitScreen
sl@0
    63
		COMMAND		scrndrv		SetDisplayMode
sl@0
    64
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0001-0001-SetAutoUpdate_command04
sl@0
    65
		COMMAND		scrndrv		OrientationsAvailable
sl@0
    66
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0001-0001-SetOrientation_command06
sl@0
    67
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0001-0001-WriteRgbMulti_command07
sl@0
    68
		COMMAND		scrndrv		~
sl@0
    69
	END_TEST_BLOCK
sl@0
    70
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0001
sl@0
    71
sl@0
    72
sl@0
    73
sl@0
    74
sl@0
    75
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0002
sl@0
    76
sl@0
    77
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0002
sl@0
    78
//!@SYMAPI
sl@0
    79
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
    80
//!@SYMAuthor			ddamian
sl@0
    81
//!@SYMCreationDate		5/2/2008 
sl@0
    82
//!@SYMTestCaseDesc		Verify WriteRgbMulti with draw mode EDrawModePEN and Display mode EColor16MA
sl@0
    83
//!@SYMTestActions
sl@0
    84
//!                1. Create Display (displayMode = EColor16MA)
sl@0
    85
//!                2. Initialize Screen
sl@0
    86
//!                3. Set Display Mode
sl@0
    87
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
    88
//!                5. Get available Orientations
sl@0
    89
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
    90
//!                7. Call WriteRGBMulti (numRect = 9; drawMode = EDrawModePEN; delay=100000)
sl@0
    91
//!                8. Destroy screen instance
sl@0
    92
//!@SYMTestStatus		Verified
sl@0
    93
//!@SYMTestPriority		Normal
sl@0
    94
//!@SYMTestExpectedResults
sl@0
    95
//!                Display mode is set to Ecolor16MA without any Error. If the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specified rectangle on display.
sl@0
    96
//!@SYMTestType			CIT
sl@0
    97
sl@0
    98
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
    99
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   100
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0002-0001-NewScreenDeviceL_command01
sl@0
   101
		COMMAND		scrndrv		InitScreen
sl@0
   102
		COMMAND		scrndrv		SetDisplayMode
sl@0
   103
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0002-0001-SetAutoUpdate_command04
sl@0
   104
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   105
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0002-0001-SetOrientation_command06
sl@0
   106
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0002-0001-WriteRgbMulti_command07
sl@0
   107
		COMMAND		scrndrv		~
sl@0
   108
	END_TEST_BLOCK
sl@0
   109
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0002
sl@0
   110
sl@0
   111
sl@0
   112
sl@0
   113
sl@0
   114
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0003
sl@0
   115
sl@0
   116
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0003
sl@0
   117
//!@SYMAPI
sl@0
   118
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   119
//!@SYMAuthor			ddamian
sl@0
   120
//!@SYMCreationDate		5/2/2008 
sl@0
   121
//!@SYMTestCaseDesc		Verify WriteRgbMulti with drawmode EDrawModeAND and Display Mode EColor64K
sl@0
   122
//!@SYMTestActions
sl@0
   123
//!                1. Create Display (displayMode = EColor64K)
sl@0
   124
//!                2. Initialize Screen
sl@0
   125
//!                3. Set Display Mode
sl@0
   126
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   127
//!                5. Get available Orientations
sl@0
   128
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   129
//!                7. Call WriteRGBMulti (numRect = 9; drawMode = EDrawModeAND; delay=100000)
sl@0
   130
//!                8.- Destroy screen instance
sl@0
   131
//!@SYMTestStatus		Verified
sl@0
   132
//!@SYMTestPriority		Normal
sl@0
   133
//!@SYMTestExpectedResults
sl@0
   134
//!                Display mode is set to Ecolor64K without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specified rectangle on display.
sl@0
   135
//!@SYMTestType			CIT
sl@0
   136
sl@0
   137
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   138
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   139
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0003-0001-NewScreenDeviceL_command01
sl@0
   140
		COMMAND		scrndrv		InitScreen
sl@0
   141
		COMMAND		scrndrv		SetDisplayMode
sl@0
   142
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0003-0001-SetAutoUpdate_command04
sl@0
   143
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   144
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0003-0001-SetOrientation_command06
sl@0
   145
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0003-0001-WriteRgbMulti_command07
sl@0
   146
		COMMAND		scrndrv		~
sl@0
   147
	END_TEST_BLOCK
sl@0
   148
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0003
sl@0
   149
sl@0
   150
sl@0
   151
sl@0
   152
sl@0
   153
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0004
sl@0
   154
sl@0
   155
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0004
sl@0
   156
//!@SYMAPI
sl@0
   157
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   158
//!@SYMAuthor			ddamian
sl@0
   159
//!@SYMCreationDate		5/2/2008 
sl@0
   160
//!@SYMTestCaseDesc		Verify WriteRgbMulti with drawmode EDrawModeAND and Display Mode EColor16MA
sl@0
   161
//!@SYMTestActions
sl@0
   162
//!                1. Create Display (displayMode = EColor16MA)
sl@0
   163
//!                2. Initialize Screen
sl@0
   164
//!                3. Set Display Mode
sl@0
   165
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   166
//!                5. Get available Orientations
sl@0
   167
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   168
//!                7. Call WriteRGBMulti (numRect = 9; drawMode = EDrawModeAND; delay=100000)
sl@0
   169
//!                8.- Destroy screen instance
sl@0
   170
//!@SYMTestStatus		Verified
sl@0
   171
//!@SYMTestPriority		Normal
sl@0
   172
//!@SYMTestExpectedResults
sl@0
   173
//!                Display mode is set to Ecolor16MA without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specified rectangle on display.
sl@0
   174
//!@SYMTestType			CIT
sl@0
   175
sl@0
   176
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   177
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   178
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0004-0001-NewScreenDeviceL_command01
sl@0
   179
		COMMAND		scrndrv		InitScreen
sl@0
   180
		COMMAND		scrndrv		SetDisplayMode
sl@0
   181
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0004-0001-SetAutoUpdate_command04
sl@0
   182
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   183
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0004-0001-SetOrientation_command06
sl@0
   184
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0004-0001-WriteRgbMulti_command07
sl@0
   185
		COMMAND		scrndrv		~
sl@0
   186
	END_TEST_BLOCK
sl@0
   187
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0004
sl@0
   188
sl@0
   189
sl@0
   190
sl@0
   191
sl@0
   192
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0005
sl@0
   193
sl@0
   194
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0005
sl@0
   195
//!@SYMAPI
sl@0
   196
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   197
//!@SYMAuthor			ddamian
sl@0
   198
//!@SYMCreationDate		5/2/2008 
sl@0
   199
//!@SYMTestCaseDesc		Verify WriteRgbMulti with drawmode EDrawModeOR and Display mode to EColor64K
sl@0
   200
//!@SYMTestActions
sl@0
   201
//!                1. Create Display (displayMode = EColor64K)
sl@0
   202
//!                2. Initialize Screen
sl@0
   203
//!                3. Set Display Mode
sl@0
   204
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   205
//!                5. Get available Orientations
sl@0
   206
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   207
//!                7. Call WriteRGBMulti (numRect = 9; drawMode = EDrawModeOR; delay=100000)
sl@0
   208
//!                8.- Destroy screen instance
sl@0
   209
//!@SYMTestStatus		Verified
sl@0
   210
//!@SYMTestPriority		Normal
sl@0
   211
//!@SYMTestExpectedResults
sl@0
   212
//!                Display mode is set to Ecolor64K without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specified rectangle on display.
sl@0
   213
//!@SYMTestType			CIT
sl@0
   214
sl@0
   215
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   216
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   217
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0005-0001-NewScreenDeviceL_command01
sl@0
   218
		COMMAND		scrndrv		InitScreen
sl@0
   219
		COMMAND		scrndrv		SetDisplayMode
sl@0
   220
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0005-0001-SetAutoUpdate_command04
sl@0
   221
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   222
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0005-0001-SetOrientation_command06
sl@0
   223
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0005-0001-WriteRgbMulti_command07
sl@0
   224
		COMMAND		scrndrv		~
sl@0
   225
	END_TEST_BLOCK
sl@0
   226
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0005
sl@0
   227
sl@0
   228
sl@0
   229
sl@0
   230
sl@0
   231
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0006
sl@0
   232
sl@0
   233
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0006
sl@0
   234
//!@SYMAPI
sl@0
   235
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   236
//!@SYMAuthor			ddamian
sl@0
   237
//!@SYMCreationDate		5/2/2008 
sl@0
   238
//!@SYMTestCaseDesc		Verify WriteRgbMulti with drawmode EDrawModeOR and Display mode to EColor16MA
sl@0
   239
//!@SYMTestActions
sl@0
   240
//!                1. Create Display (displayMode = EColor16MA)
sl@0
   241
//!                2. Initialize Screen
sl@0
   242
//!                3. Set Display Mode
sl@0
   243
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   244
//!                5. Get available Orientations
sl@0
   245
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   246
//!                7. Call WriteRGBMulti (numRect = 9; drawMode = EDrawModeOR; delay=100000)
sl@0
   247
//!                8.- Destroy screen instance
sl@0
   248
//!@SYMTestStatus		Verified
sl@0
   249
//!@SYMTestPriority		Normal
sl@0
   250
//!@SYMTestExpectedResults
sl@0
   251
//!                Display mode is set to Ecolor16MA without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specified rectangle on display.
sl@0
   252
//!                
sl@0
   253
//!@SYMTestType			CIT
sl@0
   254
sl@0
   255
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   256
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   257
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0006-0001-NewScreenDeviceL_command01
sl@0
   258
		COMMAND		scrndrv		InitScreen
sl@0
   259
		COMMAND		scrndrv		SetDisplayMode
sl@0
   260
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0006-0001-SetAutoUpdate_command04
sl@0
   261
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   262
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0006-0001-SetOrientation_command06
sl@0
   263
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0006-0001-WriteRgbMulti_command07
sl@0
   264
		COMMAND		scrndrv		~
sl@0
   265
	END_TEST_BLOCK
sl@0
   266
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0006
sl@0
   267
sl@0
   268
sl@0
   269
sl@0
   270
sl@0
   271
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0007
sl@0
   272
sl@0
   273
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0007
sl@0
   274
//!@SYMAPI
sl@0
   275
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   276
//!@SYMAuthor			ddamian
sl@0
   277
//!@SYMCreationDate		5/2/2008 
sl@0
   278
//!@SYMTestCaseDesc		Verify WriteRgbMulti with drawmode EDrawModeNOTSCREEN and Display mode EColor64K
sl@0
   279
//!@SYMTestActions
sl@0
   280
//!                1. Create Display (displayMode = EColor64K)
sl@0
   281
//!                2. Initialize Screen
sl@0
   282
//!                3. Set Display Mode
sl@0
   283
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   284
//!                5. Get available Orientations
sl@0
   285
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   286
//!                7. Call WriteRGBMulti (numRect = 9; drawMode = EDrawModeNOTSCREEN; delay=100000)
sl@0
   287
//!                8.- Destroy screen instance
sl@0
   288
//!@SYMTestStatus		Verified
sl@0
   289
//!@SYMTestPriority		Normal
sl@0
   290
//!@SYMTestExpectedResults
sl@0
   291
//!                Display mode is set to Ecolor64K without any Error .if the Display mode is not supported module should leave with proper error.Orientation is set properly without error. The given color is written to the specified  rectangle on display.
sl@0
   292
//!@SYMTestType			CIT
sl@0
   293
sl@0
   294
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   295
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   296
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0007-0001-NewScreenDeviceL_command01
sl@0
   297
		COMMAND		scrndrv		InitScreen
sl@0
   298
		COMMAND		scrndrv		SetDisplayMode
sl@0
   299
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0007-0001-SetAutoUpdate_command04
sl@0
   300
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   301
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0007-0001-SetOrientation_command06
sl@0
   302
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0007-0001-WriteRgbMulti_command07
sl@0
   303
		COMMAND		scrndrv		~
sl@0
   304
	END_TEST_BLOCK
sl@0
   305
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0007
sl@0
   306
sl@0
   307
sl@0
   308
sl@0
   309
sl@0
   310
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0008
sl@0
   311
sl@0
   312
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0008
sl@0
   313
//!@SYMAPI
sl@0
   314
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   315
//!@SYMAuthor			ddamian
sl@0
   316
//!@SYMCreationDate		5/2/2008 
sl@0
   317
//!@SYMTestCaseDesc		Verify WriteRgbMulti with draw mode EDrawModeNOTSCREEN and Display mode EColor16MA
sl@0
   318
//!@SYMTestActions
sl@0
   319
//!                1. Create Display (displayMode = EColor16MA)
sl@0
   320
//!                2. Initialize Screen
sl@0
   321
//!                3. Set Display Mode
sl@0
   322
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   323
//!                5. Get available Orientations
sl@0
   324
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   325
//!                7. Call WriteRGBMulti (numRect = 9; drawMode = EDrawModeNOTSCREEN; delay=100000)
sl@0
   326
//!                8.- Destroy screen instance
sl@0
   327
//!@SYMTestStatus		Verified
sl@0
   328
//!@SYMTestPriority		Normal
sl@0
   329
//!@SYMTestExpectedResults
sl@0
   330
//!                Display mode is set to Ecolor16MA without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specified rectangle on display.
sl@0
   331
//!@SYMTestType			CIT
sl@0
   332
sl@0
   333
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   334
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   335
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0008-0001-NewScreenDeviceL_command01
sl@0
   336
		COMMAND		scrndrv		InitScreen
sl@0
   337
		COMMAND		scrndrv		SetDisplayMode
sl@0
   338
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0008-0001-SetAutoUpdate_command04
sl@0
   339
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   340
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0008-0001-SetOrientation_command06
sl@0
   341
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0008-0001-WriteRgbMulti_command07
sl@0
   342
		COMMAND		scrndrv		~
sl@0
   343
	END_TEST_BLOCK
sl@0
   344
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0008
sl@0
   345
sl@0
   346
sl@0
   347
sl@0
   348
sl@0
   349
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0009
sl@0
   350
sl@0
   351
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0009
sl@0
   352
//!@SYMAPI
sl@0
   353
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   354
//!@SYMAuthor			ddamian
sl@0
   355
//!@SYMCreationDate		5/2/2008 
sl@0
   356
//!@SYMTestCaseDesc		Verify WriteRgbMulti with drawmode EDrawModeNOTPEN with display mode EColor64K
sl@0
   357
//!@SYMTestActions
sl@0
   358
//!                1. Create Display (displayMode = EColor64K)
sl@0
   359
//!                2. Initialize Screen
sl@0
   360
//!                3. Set Display Mode
sl@0
   361
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   362
//!                5. Get available Orientations
sl@0
   363
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   364
//!                7. Call WriteRGBMulti (numRect = 9; drawMode = EDrawModeNOTPEN; delay=100000)
sl@0
   365
//!                8.- Destroy screen instance
sl@0
   366
//!@SYMTestStatus		Verified
sl@0
   367
//!@SYMTestPriority		Normal
sl@0
   368
//!@SYMTestExpectedResults
sl@0
   369
//!                Display mode is set to Ecolor64K without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specification  rectangle on display.
sl@0
   370
//!@SYMTestType			CIT
sl@0
   371
sl@0
   372
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   373
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   374
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0009-0001-NewScreenDeviceL_command01
sl@0
   375
		COMMAND		scrndrv		InitScreen
sl@0
   376
		COMMAND		scrndrv		SetDisplayMode
sl@0
   377
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0009-0001-SetAutoUpdate_command04
sl@0
   378
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   379
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0009-0001-SetOrientation_command06
sl@0
   380
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0009-0001-WriteRgbMulti_command07
sl@0
   381
		COMMAND		scrndrv		~
sl@0
   382
	END_TEST_BLOCK
sl@0
   383
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0009
sl@0
   384
sl@0
   385
sl@0
   386
sl@0
   387
sl@0
   388
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0010
sl@0
   389
sl@0
   390
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0010
sl@0
   391
//!@SYMAPI
sl@0
   392
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   393
//!@SYMAuthor			ddamian
sl@0
   394
//!@SYMCreationDate		5/2/2008 
sl@0
   395
//!@SYMTestCaseDesc		Verify WriteRgbMulti with draw mode EDrawModeNOTPEN with display mode EColor16MA
sl@0
   396
//!@SYMTestActions
sl@0
   397
//!                1. Create Display (displayMode = EColor16MA)
sl@0
   398
//!                2. Initialize Screen
sl@0
   399
//!                3. Set Display Mode
sl@0
   400
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   401
//!                5. Get available Orientations
sl@0
   402
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   403
//!                7. Call WriteRGBMulti (numRect = 9; drawMode = EDrawModeNOTPEN; delay=100000)
sl@0
   404
//!                8.- Destroy screen instance
sl@0
   405
//!@SYMTestStatus		Verified
sl@0
   406
//!@SYMTestPriority		Normal
sl@0
   407
//!@SYMTestExpectedResults
sl@0
   408
//!                Display mode is set to Ecolor16MA without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specification  rectangle on display.
sl@0
   409
//!@SYMTestType			CIT
sl@0
   410
sl@0
   411
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   412
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   413
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0010-0001-NewScreenDeviceL_command01
sl@0
   414
		COMMAND		scrndrv		InitScreen
sl@0
   415
		COMMAND		scrndrv		SetDisplayMode
sl@0
   416
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0010-0001-SetAutoUpdate_command04
sl@0
   417
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   418
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0010-0001-SetOrientation_command06
sl@0
   419
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0010-0001-WriteRgbMulti_command07
sl@0
   420
		COMMAND		scrndrv		~
sl@0
   421
	END_TEST_BLOCK
sl@0
   422
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0010
sl@0
   423
sl@0
   424
sl@0
   425
sl@0
   426
sl@0
   427
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0011
sl@0
   428
sl@0
   429
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0011
sl@0
   430
//!@SYMAPI
sl@0
   431
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   432
//!@SYMAuthor			ddamian
sl@0
   433
//!@SYMCreationDate		5/2/2008 
sl@0
   434
//!@SYMTestCaseDesc		Verify WriteRgbMulti with drawmode EDrawModeXOR with Display mode EColor64K
sl@0
   435
//!@SYMTestActions
sl@0
   436
//!                1. Create Display (displayMode = EColor64K)
sl@0
   437
//!                2. Initialize Screen
sl@0
   438
//!                3. Set Display Mode
sl@0
   439
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   440
//!                5. Get available Orientations
sl@0
   441
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   442
//!                7. Call WriteRGBMulti (numRect = 9; drawMode = EDrawModeXOR; delay=100000)
sl@0
   443
//!                8.- Destroy screen instance
sl@0
   444
//!@SYMTestStatus		Verified
sl@0
   445
//!@SYMTestPriority		Normal
sl@0
   446
//!@SYMTestExpectedResults
sl@0
   447
//!                Display mode is set to Ecolor64K without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specified rectangle on display.
sl@0
   448
//!                
sl@0
   449
//!@SYMTestType			CIT
sl@0
   450
sl@0
   451
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   452
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   453
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0011-0001-NewScreenDeviceL_command01
sl@0
   454
		COMMAND		scrndrv		InitScreen
sl@0
   455
		COMMAND		scrndrv		SetDisplayMode
sl@0
   456
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0011-0001-SetAutoUpdate_command04
sl@0
   457
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   458
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0011-0001-SetOrientation_command06
sl@0
   459
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0011-0001-WriteRgbMulti_command07
sl@0
   460
		COMMAND		scrndrv		~
sl@0
   461
	END_TEST_BLOCK
sl@0
   462
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0011
sl@0
   463
sl@0
   464
sl@0
   465
sl@0
   466
sl@0
   467
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0012
sl@0
   468
sl@0
   469
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0012
sl@0
   470
//!@SYMAPI
sl@0
   471
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   472
//!@SYMAuthor			ddamian
sl@0
   473
//!@SYMCreationDate		5/2/2008 
sl@0
   474
//!@SYMTestCaseDesc		Verify WriteRgbMulti with draw mode EDrawModeXOR with Display mode EColor16MA
sl@0
   475
//!@SYMTestActions
sl@0
   476
//!                1. Create Display (displayMode = EColor16MA)
sl@0
   477
//!                2. Initialize Screen
sl@0
   478
//!                3. Set Display Mode
sl@0
   479
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   480
//!                5. Get available Orientations
sl@0
   481
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   482
//!                7. Call WriteRGBMulti (numRect = 9; drawMode = EDrawModeXOR; delay=100000)
sl@0
   483
//!                8.- Destroy screen instance
sl@0
   484
//!@SYMTestStatus		Verified
sl@0
   485
//!@SYMTestPriority		Normal
sl@0
   486
//!@SYMTestExpectedResults
sl@0
   487
//!                Display mode is set to Ecolor16MA without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specified rectangle on display.
sl@0
   488
//!                
sl@0
   489
//!@SYMTestType			CIT
sl@0
   490
sl@0
   491
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   492
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   493
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0012-0001-NewScreenDeviceL_command01
sl@0
   494
		COMMAND		scrndrv		InitScreen
sl@0
   495
		COMMAND		scrndrv		SetDisplayMode
sl@0
   496
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0012-0001-SetAutoUpdate_command04
sl@0
   497
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   498
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0012-0001-SetOrientation_command06
sl@0
   499
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0012-0001-WriteRgbMulti_command07
sl@0
   500
		COMMAND		scrndrv		~
sl@0
   501
	END_TEST_BLOCK
sl@0
   502
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0012
sl@0
   503
sl@0
   504
sl@0
   505
sl@0
   506
sl@0
   507
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0013
sl@0
   508
sl@0
   509
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0013
sl@0
   510
//!@SYMAPI
sl@0
   511
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   512
//!@SYMAuthor			ddamian
sl@0
   513
//!@SYMCreationDate		5/2/2008 
sl@0
   514
//!@SYMTestCaseDesc		Verify WriteRgbMulti with drawmode EDrawModePEN and Display mode  EColor16MU
sl@0
   515
//!@SYMTestActions
sl@0
   516
//!                1. Create Display (displayMode = EColor16MU)
sl@0
   517
//!                2. Initialize Screen
sl@0
   518
//!                3. Set Display Mode
sl@0
   519
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   520
//!                5. Get available Orientations
sl@0
   521
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   522
//!                7. Call WriteRGBMulti (drawMode = EDrawModePEN; numRect = 9; delay=100000)
sl@0
   523
//!                8.- Destroy screen instance
sl@0
   524
//!@SYMTestStatus		Verified
sl@0
   525
//!@SYMTestPriority		Normal
sl@0
   526
//!@SYMTestExpectedResults
sl@0
   527
//!                Display mode is set to Ecolor16MU without any Error. if the Display mode is not supported ,module should leave with KErrorNot. Orientation is set properly without error. The given color is written to the specified rectangle on display.
sl@0
   528
//!@SYMTestType			CIT
sl@0
   529
sl@0
   530
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   531
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   532
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0013-0001-NewScreenDeviceL_command01
sl@0
   533
		COMMAND		scrndrv		InitScreen
sl@0
   534
		COMMAND		scrndrv		SetDisplayMode
sl@0
   535
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0013-0001-SetAutoUpdate_command04
sl@0
   536
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   537
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0013-0001-SetOrientation_command06
sl@0
   538
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0013-0001-WriteRgbMulti_command07
sl@0
   539
		COMMAND		scrndrv		~
sl@0
   540
	END_TEST_BLOCK
sl@0
   541
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0013
sl@0
   542
sl@0
   543
sl@0
   544
sl@0
   545
sl@0
   546
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0014
sl@0
   547
sl@0
   548
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0014
sl@0
   549
//!@SYMAPI
sl@0
   550
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   551
//!@SYMAuthor			ddamian
sl@0
   552
//!@SYMCreationDate		5/2/2008 
sl@0
   553
//!@SYMTestCaseDesc		Verify WriteRgbMulti with drawmode EDrawModeAND and Display Mode EColor16MU
sl@0
   554
//!@SYMTestActions
sl@0
   555
//!                1. Create Display (displayMode = EColor16MU)
sl@0
   556
//!                2. Initialize Screen
sl@0
   557
//!                3. Set Display Mode
sl@0
   558
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   559
//!                5. Get available Orientations
sl@0
   560
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   561
//!                7. Call WriteRGBMulti (drawMode = EDrawModeAND; numRect = 9; delay=100000)
sl@0
   562
//!                8.- Destroy screen instance
sl@0
   563
//!@SYMTestStatus		Verified
sl@0
   564
//!@SYMTestPriority		Normal
sl@0
   565
//!@SYMTestExpectedResults
sl@0
   566
//!                Display mode is set to Ecolor16MU without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specified rectangle on display.
sl@0
   567
//!                
sl@0
   568
//!@SYMTestType			CIT
sl@0
   569
sl@0
   570
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   571
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   572
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0014-0001-NewScreenDeviceL_command01
sl@0
   573
		COMMAND		scrndrv		InitScreen
sl@0
   574
		COMMAND		scrndrv		SetDisplayMode
sl@0
   575
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0014-0001-SetAutoUpdate_command04
sl@0
   576
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   577
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0014-0001-SetOrientation_command06
sl@0
   578
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0014-0001-WriteRgbMulti_command07
sl@0
   579
		COMMAND		scrndrv		~
sl@0
   580
	END_TEST_BLOCK
sl@0
   581
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0014
sl@0
   582
sl@0
   583
sl@0
   584
sl@0
   585
sl@0
   586
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0015
sl@0
   587
sl@0
   588
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0015
sl@0
   589
//!@SYMAPI
sl@0
   590
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   591
//!@SYMAuthor			ddamian
sl@0
   592
//!@SYMCreationDate		5/2/2008 
sl@0
   593
//!@SYMTestCaseDesc		Verify WriteRgbMulti with drawmode EDrawModeOR and Display mode to EColor16MU
sl@0
   594
//!@SYMTestActions
sl@0
   595
//!                1. Create Display (displayMode = EColor16MU)
sl@0
   596
//!                2. Initialize Screen
sl@0
   597
//!                3. Set Display Mode
sl@0
   598
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   599
//!                5. Get available Orientations
sl@0
   600
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   601
//!                7. Call WriteRGBMulti (drawMode = EDrawModeOR; numRect = 9; delay=100000)
sl@0
   602
//!                8.- Destroy screen instance
sl@0
   603
//!@SYMTestStatus		Verified
sl@0
   604
//!@SYMTestPriority		Normal
sl@0
   605
//!@SYMTestExpectedResults
sl@0
   606
//!                Display mode is set to Ecolor16MU without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specified rectangle on display.
sl@0
   607
//!                
sl@0
   608
//!@SYMTestType			CIT
sl@0
   609
sl@0
   610
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   611
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   612
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0015-0001-NewScreenDeviceL_command01
sl@0
   613
		COMMAND		scrndrv		InitScreen
sl@0
   614
		COMMAND		scrndrv		SetDisplayMode
sl@0
   615
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0015-0001-SetAutoUpdate_command04
sl@0
   616
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   617
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0015-0001-SetOrientation_command06
sl@0
   618
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0015-0001-WriteRgbMulti_command07
sl@0
   619
		COMMAND		scrndrv		~
sl@0
   620
	END_TEST_BLOCK
sl@0
   621
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0015
sl@0
   622
sl@0
   623
sl@0
   624
sl@0
   625
sl@0
   626
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0016
sl@0
   627
sl@0
   628
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0016
sl@0
   629
//!@SYMAPI
sl@0
   630
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   631
//!@SYMAuthor			ddamian
sl@0
   632
//!@SYMCreationDate		5/2/2008 
sl@0
   633
//!@SYMTestCaseDesc		Verify WriteRgbMulti with drawmode EDrawModeNOTSCREEN and Display mode EColor16MU
sl@0
   634
//!@SYMTestActions
sl@0
   635
//!                1. Create Display (displayMode = EColor16MU)
sl@0
   636
//!                2. Initialize Screen
sl@0
   637
//!                3. Set Display Mode
sl@0
   638
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   639
//!                5. Get available Orientations
sl@0
   640
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   641
//!                7. Call WriteRGBMulti (drawMode = EDrawModeNOTSCREEN; numRect = 9; delay=100000)
sl@0
   642
//!                8.- Destroy screen instance
sl@0
   643
//!@SYMTestStatus		Verified
sl@0
   644
//!@SYMTestPriority		Normal
sl@0
   645
//!@SYMTestExpectedResults
sl@0
   646
//!                Display mode is set to Ecolor16MU without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specified rectangle on display.
sl@0
   647
//!                
sl@0
   648
//!@SYMTestType			CIT
sl@0
   649
sl@0
   650
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   651
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   652
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0016-0001-NewScreenDeviceL_command01
sl@0
   653
		COMMAND		scrndrv		InitScreen
sl@0
   654
		COMMAND		scrndrv		SetDisplayMode
sl@0
   655
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0016-0001-SetAutoUpdate_command04
sl@0
   656
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   657
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0016-0001-SetOrientation_command06
sl@0
   658
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0016-0001-WriteRgbMulti_command07
sl@0
   659
		COMMAND		scrndrv		~
sl@0
   660
	END_TEST_BLOCK
sl@0
   661
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0016
sl@0
   662
sl@0
   663
sl@0
   664
sl@0
   665
sl@0
   666
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0017
sl@0
   667
sl@0
   668
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0017
sl@0
   669
//!@SYMAPI
sl@0
   670
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   671
//!@SYMAuthor			ddamian
sl@0
   672
//!@SYMCreationDate		5/2/2008 
sl@0
   673
//!@SYMTestCaseDesc		Verify WriteRgbMulti with draw mode EDrawModeNOTPEN with display mode EColor16MU
sl@0
   674
//!@SYMTestActions
sl@0
   675
//!                1. Create Display (displayMode = EColor16MU)
sl@0
   676
//!                2. Initialize Screen
sl@0
   677
//!                3. Set Display Mode
sl@0
   678
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   679
//!                5. Get available Orientations
sl@0
   680
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   681
//!                7. Call WriteRGBMulti (drawMode = EDrawModeNOTPEN; numRect = 9; delay=100000)
sl@0
   682
//!                8.- Destroy screen instance
sl@0
   683
//!@SYMTestStatus		Verified
sl@0
   684
//!@SYMTestPriority		Normal
sl@0
   685
//!@SYMTestExpectedResults
sl@0
   686
//!                Display mode is set to Ecolor16MU without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specification  rectangle on display.
sl@0
   687
//!                
sl@0
   688
//!@SYMTestType			CIT
sl@0
   689
sl@0
   690
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   691
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   692
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0017-0001-NewScreenDeviceL_command01
sl@0
   693
		COMMAND		scrndrv		InitScreen
sl@0
   694
		COMMAND		scrndrv		SetDisplayMode
sl@0
   695
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0017-0001-SetAutoUpdate_command04
sl@0
   696
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   697
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0017-0001-SetOrientation_command06
sl@0
   698
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0017-0001-WriteRgbMulti_command07
sl@0
   699
		COMMAND		scrndrv		~
sl@0
   700
	END_TEST_BLOCK
sl@0
   701
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0017
sl@0
   702
sl@0
   703
sl@0
   704
sl@0
   705
sl@0
   706
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0018
sl@0
   707
sl@0
   708
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0018
sl@0
   709
//!@SYMAPI
sl@0
   710
//!                CFbsDrawDevice::WriteRgbMulti(TInt aX, TInt aY, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   711
//!@SYMAuthor			ddamian
sl@0
   712
//!@SYMCreationDate		5/2/2008 
sl@0
   713
//!@SYMTestCaseDesc		Verify WriteRgbMulti with draw mode EDrawModeXOR with Display mode EColor16MU
sl@0
   714
//!@SYMTestActions
sl@0
   715
//!                1. Create Display (displayMode = EColor16MU)
sl@0
   716
//!                2. Initialize Screen
sl@0
   717
//!                3. Set Display Mode
sl@0
   718
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   719
//!                5. Get available Orientations
sl@0
   720
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   721
//!                7. Call WriteRGBMulti (drawMode = EDrawModeXOR; numRect = 9; delay=100000)
sl@0
   722
//!                8.- Destroy screen instance
sl@0
   723
//!@SYMTestStatus		Verified
sl@0
   724
//!@SYMTestPriority		Normal
sl@0
   725
//!@SYMTestExpectedResults
sl@0
   726
//!                Display mode is set to Ecolor16MU without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specified rectangle on display.
sl@0
   727
//!                
sl@0
   728
//!@SYMTestType			CIT
sl@0
   729
sl@0
   730
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   731
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   732
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0018-0001-NewScreenDeviceL_command01
sl@0
   733
		COMMAND		scrndrv		InitScreen
sl@0
   734
		COMMAND		scrndrv		SetDisplayMode
sl@0
   735
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0018-0001-SetAutoUpdate_command04
sl@0
   736
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   737
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0018-0001-SetOrientation_command06
sl@0
   738
		COMMAND		scrndrv		WriteRgbMulti			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0018-0001-WriteRgbMulti_command07
sl@0
   739
		COMMAND		scrndrv		~
sl@0
   740
	END_TEST_BLOCK
sl@0
   741
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0018
sl@0
   742
sl@0
   743
sl@0
   744
sl@0
   745
sl@0
   746
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0019
sl@0
   747
sl@0
   748
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0019
sl@0
   749
//!@SYMAPI
sl@0
   750
//!                CFbsDrawDevice::WriteRgb(TInt aX, TInt aY, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   751
//!@SYMAuthor			ddamian
sl@0
   752
//!@SYMCreationDate		5/2/2008 
sl@0
   753
//!@SYMTestCaseDesc		Verify WriteRgb Functionality with Display mode EColor64K
sl@0
   754
//!@SYMTestActions
sl@0
   755
//!                1. Create Display (displayMode = EColor64K)
sl@0
   756
//!                2. Initialize Screen
sl@0
   757
//!                3. Set Display Mode
sl@0
   758
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   759
//!                5. Get available Orientations
sl@0
   760
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   761
//!                7. Call WriteRGB (drawMode = EDrawModeAND; numRect = 0; delay=100000)
sl@0
   762
//!                8.- Destroy screen instance
sl@0
   763
//!@SYMTestStatus		Verified
sl@0
   764
//!@SYMTestPriority		Normal
sl@0
   765
//!@SYMTestExpectedResults
sl@0
   766
//!                Display mode is set to Ecolor64K without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specified location on display.
sl@0
   767
//!                
sl@0
   768
//!@SYMTestType			CIT
sl@0
   769
sl@0
   770
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   771
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   772
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0019-0001-NewScreenDeviceL_command01
sl@0
   773
		COMMAND		scrndrv		InitScreen
sl@0
   774
		COMMAND		scrndrv		SetDisplayMode
sl@0
   775
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0019-0001-SetAutoUpdate_command04
sl@0
   776
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   777
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0019-0001-SetOrientation_command06
sl@0
   778
		COMMAND		scrndrv		WriteRgb			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0019-0001-WriteRgb_command07
sl@0
   779
		COMMAND		scrndrv		~
sl@0
   780
	END_TEST_BLOCK
sl@0
   781
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0019
sl@0
   782
sl@0
   783
sl@0
   784
sl@0
   785
sl@0
   786
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0020
sl@0
   787
sl@0
   788
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0020
sl@0
   789
//!@SYMAPI
sl@0
   790
//!                CFbsDrawDevice::WriteRgb(TInt aX, TInt aY, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   791
//!@SYMAuthor			ddamian
sl@0
   792
//!@SYMCreationDate		5/2/2008 
sl@0
   793
//!@SYMTestCaseDesc		Verify WriteRgb Functionality with Display mode EColor16MA
sl@0
   794
//!@SYMTestActions
sl@0
   795
//!                1. Create Display (displayMode = EColor16MA)
sl@0
   796
//!                2. Initialize Screen
sl@0
   797
//!                3. Set Display Mode
sl@0
   798
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   799
//!                5. Get available Orientations
sl@0
   800
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   801
//!                7. Call WriteRGB (drawMode = EDrawModeAND; numRect = 0; delay=100000)
sl@0
   802
//!                8.- Destroy screen instance
sl@0
   803
//!@SYMTestStatus		Verified
sl@0
   804
//!@SYMTestPriority		Normal
sl@0
   805
//!@SYMTestExpectedResults
sl@0
   806
//!                Display mode is set to Ecolor16MA without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specified location on display.
sl@0
   807
//!                
sl@0
   808
//!@SYMTestType			CIT
sl@0
   809
sl@0
   810
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   811
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   812
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0020-0001-NewScreenDeviceL_command01
sl@0
   813
		COMMAND		scrndrv		InitScreen
sl@0
   814
		COMMAND		scrndrv		SetDisplayMode
sl@0
   815
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0020-0001-SetAutoUpdate_command04
sl@0
   816
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   817
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0020-0001-SetOrientation_command06
sl@0
   818
		COMMAND		scrndrv		WriteRgb			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0020-0001-WriteRgb_command07
sl@0
   819
		COMMAND		scrndrv		~
sl@0
   820
	END_TEST_BLOCK
sl@0
   821
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0020
sl@0
   822
sl@0
   823
sl@0
   824
sl@0
   825
sl@0
   826
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0021
sl@0
   827
sl@0
   828
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0021
sl@0
   829
//!@SYMAPI
sl@0
   830
//!                CFbsDrawDevice::WriteRgb(TInt aX, TInt aY, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   831
//!@SYMAuthor			ddamian
sl@0
   832
//!@SYMCreationDate		5/2/2008 
sl@0
   833
//!@SYMTestCaseDesc		Verify WriteRgb Functionality with Display mode EColor16MU
sl@0
   834
//!@SYMTestActions
sl@0
   835
//!                1. Create Display (displayMode = EColor16MU)
sl@0
   836
//!                2. Initialize Screen
sl@0
   837
//!                3. Set Display Mode
sl@0
   838
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   839
//!                5. Get available Orientations
sl@0
   840
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   841
//!                7. Call WriteRGB (drawMode = EDrawModeAND; numRect = 0; delay=100000)
sl@0
   842
//!                8.- Destroy screen instance
sl@0
   843
//!@SYMTestStatus		Verified
sl@0
   844
//!@SYMTestPriority		Normal
sl@0
   845
//!@SYMTestExpectedResults
sl@0
   846
//!                Display mode is set to Ecolor16MU without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The given color is written to the specified location on display.
sl@0
   847
//!                
sl@0
   848
//!@SYMTestType			CIT
sl@0
   849
sl@0
   850
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   851
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   852
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0021-0001-NewScreenDeviceL_command01
sl@0
   853
		COMMAND		scrndrv		InitScreen
sl@0
   854
		COMMAND		scrndrv		SetDisplayMode
sl@0
   855
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0021-0001-SetAutoUpdate_command04
sl@0
   856
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   857
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0021-0001-SetOrientation_command06
sl@0
   858
		COMMAND		scrndrv		WriteRgb			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0021-0001-WriteRgb_command07
sl@0
   859
		COMMAND		scrndrv		~
sl@0
   860
	END_TEST_BLOCK
sl@0
   861
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0021
sl@0
   862
sl@0
   863
sl@0
   864
sl@0
   865
sl@0
   866
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0022
sl@0
   867
sl@0
   868
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0022
sl@0
   869
//!@SYMAPI
sl@0
   870
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   871
//!@SYMAuthor			ddamian
sl@0
   872
//!@SYMCreationDate		5/2/2008 
sl@0
   873
//!@SYMTestCaseDesc		Verify WriteLine with drawmode EDrawModeOR and Display mode as EColor64K
sl@0
   874
//!@SYMTestActions
sl@0
   875
//!                1. Create Display (displayMode = EColor64K)
sl@0
   876
//!                2. Initialize Screen
sl@0
   877
//!                3. Set Display Mode
sl@0
   878
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   879
//!                5. Get available Orientations
sl@0
   880
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   881
//!                7. Call WriteLine (drawMode = EDrawModeOR; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
   882
//!                8.- Destroy screen instance
sl@0
   883
//!@SYMTestStatus		Verified
sl@0
   884
//!@SYMTestPriority		Normal
sl@0
   885
//!@SYMTestExpectedResults
sl@0
   886
//!                Display mode is set to Ecolor64K without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
   887
//!@SYMTestType			CIT
sl@0
   888
sl@0
   889
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   890
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   891
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0022-0001-NewScreenDeviceL_command01
sl@0
   892
		COMMAND		scrndrv		InitScreen
sl@0
   893
		COMMAND		scrndrv		SetDisplayMode
sl@0
   894
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0022-0001-SetAutoUpdate_command04
sl@0
   895
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   896
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0022-0001-SetOrientation_command06
sl@0
   897
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0022-0001-WriteLine_command07
sl@0
   898
		COMMAND		scrndrv		~
sl@0
   899
	END_TEST_BLOCK
sl@0
   900
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0022
sl@0
   901
sl@0
   902
sl@0
   903
sl@0
   904
sl@0
   905
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0023
sl@0
   906
sl@0
   907
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0023
sl@0
   908
//!@SYMAPI
sl@0
   909
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   910
//!@SYMAuthor			ddamian
sl@0
   911
//!@SYMCreationDate		5/2/2008 
sl@0
   912
//!@SYMTestCaseDesc		Verify WriteLine with draw mode EDrawModeOR and Display mode as EColor16MA
sl@0
   913
//!@SYMTestActions
sl@0
   914
//!                1. Create Display (displayMode = EColor16MA)
sl@0
   915
//!                2. Initialize Screen
sl@0
   916
//!                3. Set Display Mode
sl@0
   917
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   918
//!                5. Get available Orientations
sl@0
   919
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   920
//!                7. Call WriteLine (drawMode = EDrawModeOR; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
   921
//!                8.- Destroy screen instance
sl@0
   922
//!@SYMTestStatus		Verified
sl@0
   923
//!@SYMTestPriority		Normal
sl@0
   924
//!@SYMTestExpectedResults
sl@0
   925
//!                Display mode is set to Ecolor16MA without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
   926
//!@SYMTestType			CIT
sl@0
   927
sl@0
   928
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   929
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   930
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0023-0001-NewScreenDeviceL_command01
sl@0
   931
		COMMAND		scrndrv		InitScreen
sl@0
   932
		COMMAND		scrndrv		SetDisplayMode
sl@0
   933
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0023-0001-SetAutoUpdate_command04
sl@0
   934
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   935
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0023-0001-SetOrientation_command06
sl@0
   936
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0023-0001-WriteLine_command07
sl@0
   937
		COMMAND		scrndrv		~
sl@0
   938
	END_TEST_BLOCK
sl@0
   939
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0023
sl@0
   940
sl@0
   941
sl@0
   942
sl@0
   943
sl@0
   944
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0024
sl@0
   945
sl@0
   946
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0024
sl@0
   947
//!@SYMAPI
sl@0
   948
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   949
//!@SYMAuthor			ddamian
sl@0
   950
//!@SYMCreationDate		5/2/2008 
sl@0
   951
//!@SYMTestCaseDesc		Verify WriteLine with drawmode EDrawModePEN with display mode EColor64K
sl@0
   952
//!@SYMTestActions
sl@0
   953
//!                1. Create Display (displayMode = EColor64K)
sl@0
   954
//!                2. Initialize Screen
sl@0
   955
//!                3. Set Display Mode
sl@0
   956
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   957
//!                5. Get available Orientations
sl@0
   958
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   959
//!                7. Call WriteLine (drawMode = EDrawModePEN; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
   960
//!                8.- Destroy screen instance
sl@0
   961
//!@SYMTestStatus		Verified
sl@0
   962
//!@SYMTestPriority		Normal
sl@0
   963
//!@SYMTestExpectedResults
sl@0
   964
//!                Display mode is set to Ecolor64K without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated
sl@0
   965
//!@SYMTestType			CIT
sl@0
   966
sl@0
   967
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
   968
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
   969
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0024-0001-NewScreenDeviceL_command01
sl@0
   970
		COMMAND		scrndrv		InitScreen
sl@0
   971
		COMMAND		scrndrv		SetDisplayMode
sl@0
   972
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0024-0001-SetAutoUpdate_command04
sl@0
   973
		COMMAND		scrndrv		OrientationsAvailable
sl@0
   974
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0024-0001-SetOrientation_command06
sl@0
   975
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0024-0001-WriteLine_command07
sl@0
   976
		COMMAND		scrndrv		~
sl@0
   977
	END_TEST_BLOCK
sl@0
   978
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0024
sl@0
   979
sl@0
   980
sl@0
   981
sl@0
   982
sl@0
   983
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0025
sl@0
   984
sl@0
   985
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0025
sl@0
   986
//!@SYMAPI
sl@0
   987
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
   988
//!@SYMAuthor			ddamian
sl@0
   989
//!@SYMCreationDate		5/2/2008 
sl@0
   990
//!@SYMTestCaseDesc		Verify WriteLine with drawmode EDrawModeNOTSCREEN and display mode EColor64K
sl@0
   991
//!@SYMTestActions
sl@0
   992
//!                1. Create Display (displayMode = EColor64K)
sl@0
   993
//!                2. Initialize Screen
sl@0
   994
//!                3. Set Display Mode
sl@0
   995
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
   996
//!                5. Get available Orientations
sl@0
   997
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
   998
//!                7. Call WriteLine (drawMode = EDrawModeNOTSCREEN; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
   999
//!                8.- Destroy screen instance
sl@0
  1000
//!@SYMTestStatus		Verified
sl@0
  1001
//!@SYMTestPriority		Normal
sl@0
  1002
//!@SYMTestExpectedResults
sl@0
  1003
//!                Display mode is set to Ecolor64K without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1004
//!@SYMTestType			CIT
sl@0
  1005
sl@0
  1006
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1007
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1008
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0025-0001-NewScreenDeviceL_command01
sl@0
  1009
		COMMAND		scrndrv		InitScreen
sl@0
  1010
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1011
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0025-0001-SetAutoUpdate_command04
sl@0
  1012
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1013
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0025-0001-SetOrientation_command06
sl@0
  1014
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0025-0001-WriteLine_command07
sl@0
  1015
		COMMAND		scrndrv		~
sl@0
  1016
	END_TEST_BLOCK
sl@0
  1017
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0025
sl@0
  1018
sl@0
  1019
sl@0
  1020
sl@0
  1021
sl@0
  1022
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0026
sl@0
  1023
sl@0
  1024
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0026
sl@0
  1025
//!@SYMAPI
sl@0
  1026
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1027
//!@SYMAuthor			ddamian
sl@0
  1028
//!@SYMCreationDate		5/2/2008 
sl@0
  1029
//!@SYMTestCaseDesc		Verify WriteLine with drawmode EDrawModePEN with display mode EColor16MA
sl@0
  1030
//!@SYMTestActions
sl@0
  1031
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  1032
//!                2. Initialize Screen
sl@0
  1033
//!                3. Set Display Mode
sl@0
  1034
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1035
//!                5. Get available Orientations
sl@0
  1036
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1037
//!                7. Call WriteLine (drawMode = EDrawModePEN; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
  1038
//!                8.- Destroy screen instance
sl@0
  1039
//!@SYMTestStatus		Verified
sl@0
  1040
//!@SYMTestPriority		Normal
sl@0
  1041
//!@SYMTestExpectedResults
sl@0
  1042
//!                Display mode is set to Ecolor16MA without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1043
//!@SYMTestType			CIT
sl@0
  1044
sl@0
  1045
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1046
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1047
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0026-0001-NewScreenDeviceL_command01
sl@0
  1048
		COMMAND		scrndrv		InitScreen
sl@0
  1049
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1050
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0026-0001-SetAutoUpdate_command04
sl@0
  1051
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1052
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0026-0001-SetOrientation_command06
sl@0
  1053
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0026-0001-WriteLine_command07
sl@0
  1054
		COMMAND		scrndrv		~
sl@0
  1055
	END_TEST_BLOCK
sl@0
  1056
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0026
sl@0
  1057
sl@0
  1058
sl@0
  1059
sl@0
  1060
sl@0
  1061
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0027
sl@0
  1062
sl@0
  1063
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0027
sl@0
  1064
//!@SYMAPI
sl@0
  1065
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1066
//!@SYMAuthor			ddamian
sl@0
  1067
//!@SYMCreationDate		5/2/2008 
sl@0
  1068
//!@SYMTestCaseDesc		Verify WriteLine with drawmode EDrawModeNOTSCREEN and display mode EColor16MA
sl@0
  1069
//!@SYMTestActions
sl@0
  1070
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  1071
//!                2. Initialize Screen
sl@0
  1072
//!                3. Set Display Mode
sl@0
  1073
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1074
//!                5. Get available Orientations
sl@0
  1075
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1076
//!                7. Call WriteLine (drawMode = EDrawModeNOTSCREEN; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
  1077
//!                8.- Destroy screen instance
sl@0
  1078
//!@SYMTestStatus		Verified
sl@0
  1079
//!@SYMTestPriority		Normal
sl@0
  1080
//!@SYMTestExpectedResults
sl@0
  1081
//!                Display mode is set to Ecolor16MA without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1082
//!@SYMTestType			CIT
sl@0
  1083
sl@0
  1084
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1085
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1086
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0027-0001-NewScreenDeviceL_command01
sl@0
  1087
		COMMAND		scrndrv		InitScreen
sl@0
  1088
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1089
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0027-0001-SetAutoUpdate_command04
sl@0
  1090
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1091
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0027-0001-SetOrientation_command06
sl@0
  1092
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0027-0001-WriteLine_command07
sl@0
  1093
		COMMAND		scrndrv		~
sl@0
  1094
	END_TEST_BLOCK
sl@0
  1095
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0027
sl@0
  1096
sl@0
  1097
sl@0
  1098
sl@0
  1099
sl@0
  1100
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0028
sl@0
  1101
sl@0
  1102
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0028
sl@0
  1103
//!@SYMAPI
sl@0
  1104
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1105
//!@SYMAuthor			ddamian
sl@0
  1106
//!@SYMCreationDate		5/2/2008 
sl@0
  1107
//!@SYMTestCaseDesc		Verify WriteLine with drawmode EDrawModeAND and display mode EColor64K
sl@0
  1108
//!@SYMTestActions
sl@0
  1109
//!                1. Create Display (displayMode = EColor64K)
sl@0
  1110
//!                2. Initialize Screen
sl@0
  1111
//!                3. Set Display Mode
sl@0
  1112
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1113
//!                5. Get available Orientations
sl@0
  1114
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1115
//!                7. Call WriteLine (drawMode = EDrawModeAND; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
  1116
//!                8.- Destroy screen instance
sl@0
  1117
//!@SYMTestStatus		Verified
sl@0
  1118
//!@SYMTestPriority		Normal
sl@0
  1119
//!@SYMTestExpectedResults
sl@0
  1120
//!                Display mode is set to Ecolor64K without any Error. If the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1121
//!@SYMTestType			CIT
sl@0
  1122
sl@0
  1123
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1124
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1125
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0028-0001-NewScreenDeviceL_command01
sl@0
  1126
		COMMAND		scrndrv		InitScreen
sl@0
  1127
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1128
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0028-0001-SetAutoUpdate_command04
sl@0
  1129
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1130
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0028-0001-SetOrientation_command06
sl@0
  1131
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0028-0001-WriteLine_command07
sl@0
  1132
		COMMAND		scrndrv		~
sl@0
  1133
	END_TEST_BLOCK
sl@0
  1134
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0028
sl@0
  1135
sl@0
  1136
sl@0
  1137
sl@0
  1138
sl@0
  1139
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0029
sl@0
  1140
sl@0
  1141
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0029
sl@0
  1142
//!@SYMAPI
sl@0
  1143
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1144
//!@SYMAuthor			ddamian
sl@0
  1145
//!@SYMCreationDate		5/2/2008 
sl@0
  1146
//!@SYMTestCaseDesc		Verify WriteLine with drawmode EDrawModeNOTPEN and display mode EColor64K
sl@0
  1147
//!@SYMTestActions
sl@0
  1148
//!                1. Create Display (displayMode = EColor64K)
sl@0
  1149
//!                2. Initialize Screen
sl@0
  1150
//!                3. Set Display Mode
sl@0
  1151
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1152
//!                5. Get available Orientations
sl@0
  1153
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1154
//!                7. Call WriteLine (drawMode = EDrawModeNOTPEN; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
  1155
//!                8.- Destroy screen instance
sl@0
  1156
//!@SYMTestStatus		Verified
sl@0
  1157
//!@SYMTestPriority		Normal
sl@0
  1158
//!@SYMTestExpectedResults
sl@0
  1159
//!                Display mode is set to Ecolor64K without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1160
//!@SYMTestType			CIT
sl@0
  1161
sl@0
  1162
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1163
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1164
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0029-0001-NewScreenDeviceL_command01
sl@0
  1165
		COMMAND		scrndrv		InitScreen
sl@0
  1166
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1167
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0029-0001-SetAutoUpdate_command04
sl@0
  1168
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1169
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0029-0001-SetOrientation_command06
sl@0
  1170
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0029-0001-WriteLine_command07
sl@0
  1171
		COMMAND		scrndrv		~
sl@0
  1172
	END_TEST_BLOCK
sl@0
  1173
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0029
sl@0
  1174
sl@0
  1175
sl@0
  1176
sl@0
  1177
sl@0
  1178
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0030
sl@0
  1179
sl@0
  1180
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0030
sl@0
  1181
//!@SYMAPI
sl@0
  1182
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1183
//!@SYMAuthor			ddamian
sl@0
  1184
//!@SYMCreationDate		5/2/2008 
sl@0
  1185
//!@SYMTestCaseDesc		Verify WriteLine with draw mode EDrawModeAND and display mode EColor16MA
sl@0
  1186
//!@SYMTestActions
sl@0
  1187
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  1188
//!                2. Initialize Screen
sl@0
  1189
//!                3. Set Display Mode
sl@0
  1190
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1191
//!                5. Get available Orientations
sl@0
  1192
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1193
//!                7. Call WriteLine (drawMode = EDrawModeAND; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
  1194
//!                8.- Destroy screen instance
sl@0
  1195
//!@SYMTestStatus		Verified
sl@0
  1196
//!@SYMTestPriority		Normal
sl@0
  1197
//!@SYMTestExpectedResults
sl@0
  1198
//!                Display mode is set to Ecolor16MA without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1199
//!@SYMTestType			CIT
sl@0
  1200
sl@0
  1201
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1202
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1203
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0030-0001-NewScreenDeviceL_command01
sl@0
  1204
		COMMAND		scrndrv		InitScreen
sl@0
  1205
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1206
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0030-0001-SetAutoUpdate_command04
sl@0
  1207
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1208
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0030-0001-SetOrientation_command06
sl@0
  1209
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0030-0001-WriteLine_command07
sl@0
  1210
		COMMAND		scrndrv		~
sl@0
  1211
	END_TEST_BLOCK
sl@0
  1212
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0030
sl@0
  1213
sl@0
  1214
sl@0
  1215
sl@0
  1216
sl@0
  1217
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0031
sl@0
  1218
sl@0
  1219
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0031
sl@0
  1220
//!@SYMAPI
sl@0
  1221
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1222
//!@SYMAuthor			ddamian
sl@0
  1223
//!@SYMCreationDate		5/2/2008 
sl@0
  1224
//!@SYMTestCaseDesc		Verify WriteLine with draw mode EDrawModeNOTPEN and display mode EColor16MA
sl@0
  1225
//!@SYMTestActions
sl@0
  1226
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  1227
//!                2. Initialize Screen
sl@0
  1228
//!                3. Set Display Mode
sl@0
  1229
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1230
//!                5. Get available Orientations
sl@0
  1231
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1232
//!                7. Call WriteLine (drawMode = EDrawModeNOTPEN; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
  1233
//!                8.- Destroy screen instance
sl@0
  1234
//!@SYMTestStatus		Verified
sl@0
  1235
//!@SYMTestPriority		Normal
sl@0
  1236
//!@SYMTestExpectedResults
sl@0
  1237
//!                Display mode is set to Ecolor16MA without any Error .if the Display mode is not supported module should leave with proper error
sl@0
  1238
//!                Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1239
//!@SYMTestType			CIT
sl@0
  1240
sl@0
  1241
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1242
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1243
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0031-0001-NewScreenDeviceL_command01
sl@0
  1244
		COMMAND		scrndrv		InitScreen
sl@0
  1245
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1246
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0031-0001-SetAutoUpdate_command04
sl@0
  1247
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1248
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0031-0001-SetOrientation_command06
sl@0
  1249
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0031-0001-WriteLine_command07
sl@0
  1250
		COMMAND		scrndrv		~
sl@0
  1251
	END_TEST_BLOCK
sl@0
  1252
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0031
sl@0
  1253
sl@0
  1254
sl@0
  1255
sl@0
  1256
sl@0
  1257
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0032
sl@0
  1258
sl@0
  1259
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0032
sl@0
  1260
//!@SYMAPI
sl@0
  1261
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1262
//!@SYMAuthor			ddamian
sl@0
  1263
//!@SYMCreationDate		5/2/2008 
sl@0
  1264
//!@SYMTestCaseDesc		Verify WriteLine with drawmode EDrawModeXOR and Display mode EColor64K
sl@0
  1265
//!@SYMTestActions
sl@0
  1266
//!                1. Create Display (displayMode = EColor64K)
sl@0
  1267
//!                2. Initialize Screen
sl@0
  1268
//!                3. Set Display Mode
sl@0
  1269
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1270
//!                5. Get available Orientations
sl@0
  1271
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1272
//!                7. Call WriteLine (drawMode = EDrawModeXOR; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
  1273
//!                8.- Destroy screen instance
sl@0
  1274
//!@SYMTestStatus		Verified
sl@0
  1275
//!@SYMTestPriority		Normal
sl@0
  1276
//!@SYMTestExpectedResults
sl@0
  1277
//!                Display mode is set to EColor64K without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1278
//!                
sl@0
  1279
//!@SYMTestType			CIT
sl@0
  1280
sl@0
  1281
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1282
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1283
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0032-0001-NewScreenDeviceL_command01
sl@0
  1284
		COMMAND		scrndrv		InitScreen
sl@0
  1285
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1286
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0032-0001-SetAutoUpdate_command04
sl@0
  1287
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1288
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0032-0001-SetOrientation_command06
sl@0
  1289
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0032-0001-WriteLine_command07
sl@0
  1290
		COMMAND		scrndrv		~
sl@0
  1291
	END_TEST_BLOCK
sl@0
  1292
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0032
sl@0
  1293
sl@0
  1294
sl@0
  1295
sl@0
  1296
sl@0
  1297
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0033
sl@0
  1298
sl@0
  1299
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0033
sl@0
  1300
//!@SYMAPI
sl@0
  1301
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1302
//!@SYMAuthor			ddamian
sl@0
  1303
//!@SYMCreationDate		5/2/2008 
sl@0
  1304
//!@SYMTestCaseDesc		Verify WriteLine with drawmode EDrawModeXOR and Display mode EColor16MA
sl@0
  1305
//!@SYMTestActions
sl@0
  1306
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  1307
//!                2. Initialize Screen
sl@0
  1308
//!                3. Set Display Mode
sl@0
  1309
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1310
//!                5. Get available Orientations
sl@0
  1311
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1312
//!                7. Call WriteLine (drawMode = EDrawModeXOR; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
  1313
//!                8.- Destroy screen instance
sl@0
  1314
//!@SYMTestStatus		Verified
sl@0
  1315
//!@SYMTestPriority		Normal
sl@0
  1316
//!@SYMTestExpectedResults
sl@0
  1317
//!                Display mode is set to EColor16MA without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1318
//!@SYMTestType			CIT
sl@0
  1319
sl@0
  1320
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1321
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1322
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0033-0001-NewScreenDeviceL_command01
sl@0
  1323
		COMMAND		scrndrv		InitScreen
sl@0
  1324
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1325
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0033-0001-SetAutoUpdate_command04
sl@0
  1326
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1327
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0033-0001-SetOrientation_command06
sl@0
  1328
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0033-0001-WriteLine_command07
sl@0
  1329
		COMMAND		scrndrv		~
sl@0
  1330
	END_TEST_BLOCK
sl@0
  1331
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0033
sl@0
  1332
sl@0
  1333
sl@0
  1334
sl@0
  1335
sl@0
  1336
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0034
sl@0
  1337
sl@0
  1338
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0034
sl@0
  1339
//!@SYMAPI
sl@0
  1340
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1341
//!@SYMAuthor			ddamian
sl@0
  1342
//!@SYMCreationDate		5/2/2008 
sl@0
  1343
//!@SYMTestCaseDesc		Verify WriteLine with draw mode EDrawModePEN with display mode EColor16MU
sl@0
  1344
//!@SYMTestActions
sl@0
  1345
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  1346
//!                2. Initialize Screen
sl@0
  1347
//!                3. Set Display Mode
sl@0
  1348
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1349
//!                5. Get available Orientations
sl@0
  1350
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1351
//!                7. Call WriteLine (drawMode = EDrawModePEN; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
  1352
//!                8.- Destroy screen instance
sl@0
  1353
//!@SYMTestStatus		Verified
sl@0
  1354
//!@SYMTestPriority		Normal
sl@0
  1355
//!@SYMTestExpectedResults
sl@0
  1356
//!                Display mode is set to Ecolor16MU without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1357
//!@SYMTestType			CIT
sl@0
  1358
sl@0
  1359
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1360
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1361
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0034-0001-NewScreenDeviceL_command01
sl@0
  1362
		COMMAND		scrndrv		InitScreen
sl@0
  1363
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1364
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0034-0001-SetAutoUpdate_command04
sl@0
  1365
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1366
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0034-0001-SetOrientation_command06
sl@0
  1367
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0034-0001-WriteLine_command07
sl@0
  1368
		COMMAND		scrndrv		~
sl@0
  1369
	END_TEST_BLOCK
sl@0
  1370
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0034
sl@0
  1371
sl@0
  1372
sl@0
  1373
sl@0
  1374
sl@0
  1375
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0035
sl@0
  1376
sl@0
  1377
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0035
sl@0
  1378
//!@SYMAPI
sl@0
  1379
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1380
//!@SYMAuthor			ddamian
sl@0
  1381
//!@SYMCreationDate		5/2/2008 
sl@0
  1382
//!@SYMTestCaseDesc		Verify WriteLine with drawmode EDrawModeAND and display mode EColor16MU
sl@0
  1383
//!@SYMTestActions
sl@0
  1384
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  1385
//!                2. Initialize Screen
sl@0
  1386
//!                3. Set Display Mode
sl@0
  1387
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1388
//!                5. Get available Orientations
sl@0
  1389
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1390
//!                7. Call WriteLine (drawMode = EDrawModeAND; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
  1391
//!                8.- Destroy screen instance
sl@0
  1392
//!@SYMTestStatus		Verified
sl@0
  1393
//!@SYMTestPriority		Normal
sl@0
  1394
//!@SYMTestExpectedResults
sl@0
  1395
//!                Display mode is set to Ecolor16MU without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1396
//!@SYMTestType			CIT
sl@0
  1397
sl@0
  1398
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1399
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1400
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0035-0001-NewScreenDeviceL_command01
sl@0
  1401
		COMMAND		scrndrv		InitScreen
sl@0
  1402
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1403
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0035-0001-SetAutoUpdate_command04
sl@0
  1404
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1405
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0035-0001-SetOrientation_command06
sl@0
  1406
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0035-0001-WriteLine_command07
sl@0
  1407
		COMMAND		scrndrv		~
sl@0
  1408
	END_TEST_BLOCK
sl@0
  1409
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0035
sl@0
  1410
sl@0
  1411
sl@0
  1412
sl@0
  1413
sl@0
  1414
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0036
sl@0
  1415
sl@0
  1416
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0036
sl@0
  1417
//!@SYMAPI
sl@0
  1418
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1419
//!@SYMAuthor			ddamian
sl@0
  1420
//!@SYMCreationDate		5/2/2008 
sl@0
  1421
//!@SYMTestCaseDesc		Verify WriteLine with draw mode EDrawModeOR and Display mode as EColor16MU
sl@0
  1422
//!@SYMTestActions
sl@0
  1423
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  1424
//!                2. Initialize Screen
sl@0
  1425
//!                3. Set Display Mode
sl@0
  1426
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1427
//!                5. Get available Orientations
sl@0
  1428
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1429
//!                7. Call WriteLine (drawMode = EDrawModeOR; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
  1430
//!                8.- Destroy screen instance
sl@0
  1431
//!@SYMTestStatus		Verified
sl@0
  1432
//!@SYMTestPriority		Normal
sl@0
  1433
//!@SYMTestExpectedResults
sl@0
  1434
//!                Display mode is set to Ecolor16MU without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1435
//!@SYMTestType			CIT
sl@0
  1436
sl@0
  1437
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1438
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1439
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0036-0001-NewScreenDeviceL_command01
sl@0
  1440
		COMMAND		scrndrv		InitScreen
sl@0
  1441
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1442
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0036-0001-SetAutoUpdate_command04
sl@0
  1443
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1444
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0036-0001-SetOrientation_command06
sl@0
  1445
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0036-0001-WriteLine_command07
sl@0
  1446
		COMMAND		scrndrv		~
sl@0
  1447
	END_TEST_BLOCK
sl@0
  1448
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0036
sl@0
  1449
sl@0
  1450
sl@0
  1451
sl@0
  1452
sl@0
  1453
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0037
sl@0
  1454
sl@0
  1455
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0037
sl@0
  1456
//!@SYMAPI
sl@0
  1457
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1458
//!@SYMAuthor			ddamian
sl@0
  1459
//!@SYMCreationDate		5/2/2008 
sl@0
  1460
//!@SYMTestCaseDesc		Verify WriteLine with drawmode EDrawModeNOTSCREEN and display mode EColor16MU
sl@0
  1461
//!@SYMTestActions
sl@0
  1462
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  1463
//!                2. Initialize Screen
sl@0
  1464
//!                3. Set Display Mode
sl@0
  1465
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1466
//!                5. Get available Orientations
sl@0
  1467
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1468
//!                7. Call WriteLine (drawMode = EDrawModeNOTSCREEN; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
  1469
//!                8.- Destroy screen instance
sl@0
  1470
//!@SYMTestStatus		Verified
sl@0
  1471
//!@SYMTestPriority		Normal
sl@0
  1472
//!@SYMTestExpectedResults
sl@0
  1473
//!                Display mode is set to Ecolor16MU without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1474
//!@SYMTestType			CIT
sl@0
  1475
sl@0
  1476
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1477
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1478
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0037-0001-NewScreenDeviceL_command01
sl@0
  1479
		COMMAND		scrndrv		InitScreen
sl@0
  1480
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1481
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0037-0001-SetAutoUpdate_command04
sl@0
  1482
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1483
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0037-0001-SetOrientation_command06
sl@0
  1484
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0037-0001-WriteLine_command07
sl@0
  1485
		COMMAND		scrndrv		~
sl@0
  1486
	END_TEST_BLOCK
sl@0
  1487
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0037
sl@0
  1488
sl@0
  1489
sl@0
  1490
sl@0
  1491
sl@0
  1492
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0038
sl@0
  1493
sl@0
  1494
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0038
sl@0
  1495
//!@SYMAPI
sl@0
  1496
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1497
//!@SYMAuthor			ddamian
sl@0
  1498
//!@SYMCreationDate		5/2/2008 
sl@0
  1499
//!@SYMTestCaseDesc		Verify WriteLine with draw mode EDrawModeNOTPEN and display mode EColor16MU
sl@0
  1500
//!@SYMTestActions
sl@0
  1501
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  1502
//!                2. Initialize Screen
sl@0
  1503
//!                3. Set Display Mode
sl@0
  1504
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1505
//!                5. Get available Orientations
sl@0
  1506
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1507
//!                7. Call WriteLine (drawMode = EDrawModeNOTPEN; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
  1508
//!                8.- Destroy screen instance
sl@0
  1509
//!@SYMTestStatus		Verified
sl@0
  1510
//!@SYMTestPriority		Normal
sl@0
  1511
//!@SYMTestExpectedResults
sl@0
  1512
//!                Display mode is set to Ecolor16MU without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1513
//!@SYMTestType			CIT
sl@0
  1514
sl@0
  1515
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1516
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1517
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0038-0001-NewScreenDeviceL_command01
sl@0
  1518
		COMMAND		scrndrv		InitScreen
sl@0
  1519
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1520
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0038-0001-SetAutoUpdate_command04
sl@0
  1521
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1522
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0038-0001-SetOrientation_command06
sl@0
  1523
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0038-0001-WriteLine_command07
sl@0
  1524
		COMMAND		scrndrv		~
sl@0
  1525
	END_TEST_BLOCK
sl@0
  1526
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0038
sl@0
  1527
sl@0
  1528
sl@0
  1529
sl@0
  1530
sl@0
  1531
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0039
sl@0
  1532
sl@0
  1533
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0039
sl@0
  1534
//!@SYMAPI
sl@0
  1535
//!                CFbsDrawDevice::WriteLine(TInt aX, TInt aY, TInt aLength, TUint32 {ptr}aBuffer, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1536
//!@SYMAuthor			ddamian
sl@0
  1537
//!@SYMCreationDate		5/2/2008 
sl@0
  1538
//!@SYMTestCaseDesc		Verify WriteLine with drawmode EDrawModeXOR and Display mode EColor16MU
sl@0
  1539
//!@SYMTestActions
sl@0
  1540
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  1541
//!                2. Initialize Screen
sl@0
  1542
//!                3. Set Display Mode
sl@0
  1543
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1544
//!                5. Get available Orientations
sl@0
  1545
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1546
//!                7. Call WriteLine (drawMode = EDrawModeXOR; numRect = 9; backColor = {COLOR,RgbBlack}; delay=100000)
sl@0
  1547
//!                8.- Destroy screen instance
sl@0
  1548
//!@SYMTestStatus		Verified
sl@0
  1549
//!@SYMTestPriority		Normal
sl@0
  1550
//!@SYMTestExpectedResults
sl@0
  1551
//!                Display mode is set to EColor16MU without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1552
//!@SYMTestType			CIT
sl@0
  1553
sl@0
  1554
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1555
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1556
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0039-0001-NewScreenDeviceL_command01
sl@0
  1557
		COMMAND		scrndrv		InitScreen
sl@0
  1558
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1559
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0039-0001-SetAutoUpdate_command04
sl@0
  1560
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1561
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0039-0001-SetOrientation_command06
sl@0
  1562
		COMMAND		scrndrv		WriteLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0039-0001-WriteLine_command07
sl@0
  1563
		COMMAND		scrndrv		~
sl@0
  1564
	END_TEST_BLOCK
sl@0
  1565
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0039
sl@0
  1566
sl@0
  1567
sl@0
  1568
sl@0
  1569
sl@0
  1570
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0040
sl@0
  1571
sl@0
  1572
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0040
sl@0
  1573
//!@SYMAPI
sl@0
  1574
//!                CFbsDrawDevice::WriteBinary(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1575
//!@SYMAuthor			ddamian
sl@0
  1576
//!@SYMCreationDate		5/2/2008 
sl@0
  1577
//!@SYMTestCaseDesc		Verify WriteBinay with display mode set to Ecolor64K
sl@0
  1578
//!@SYMTestActions
sl@0
  1579
//!                1. Create Display (displayMode = EColor64K)
sl@0
  1580
//!                2. Initialize Screen
sl@0
  1581
//!                3. Set Display Mode
sl@0
  1582
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1583
//!                5. Get available Orientations
sl@0
  1584
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1585
//!                7. SetShadowMode (shadowMode = EFade)
sl@0
  1586
//!                8. Call WriteBinary (drawMode = EDrawModeAND; numRect = 9; delay=100000)
sl@0
  1587
//!                9. Destroy screen instance
sl@0
  1588
//!@SYMTestStatus		Verified
sl@0
  1589
//!@SYMTestPriority		Normal
sl@0
  1590
//!@SYMTestExpectedResults
sl@0
  1591
//!                Display mode is set to EColor64K without any Error .if the Display mode is not supported module should leave with proper error. The operation is performed without any errors.
sl@0
  1592
//!@SYMTestType			CIT
sl@0
  1593
sl@0
  1594
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1595
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1596
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0040-0001-NewScreenDeviceL_command01
sl@0
  1597
		COMMAND		scrndrv		InitScreen
sl@0
  1598
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1599
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0040-0001-SetAutoUpdate_command04
sl@0
  1600
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1601
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0040-0001-SetOrientation_command06
sl@0
  1602
		COMMAND		scrndrv		SetShadowMode			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0040-0001-SetShadowMode_command07
sl@0
  1603
		COMMAND		scrndrv		WriteBinary			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0040-0001-WriteBinary_command08
sl@0
  1604
		COMMAND		scrndrv		~
sl@0
  1605
	END_TEST_BLOCK
sl@0
  1606
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0040
sl@0
  1607
sl@0
  1608
sl@0
  1609
sl@0
  1610
sl@0
  1611
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0041
sl@0
  1612
sl@0
  1613
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0041
sl@0
  1614
//!@SYMAPI
sl@0
  1615
//!                CFbsDrawDevice::WriteBinary(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1616
//!@SYMAuthor			ddamian
sl@0
  1617
//!@SYMCreationDate		5/2/2008 
sl@0
  1618
//!@SYMTestCaseDesc		Verify WriteBinay with display mode set to Ecolor16MA
sl@0
  1619
//!@SYMTestActions
sl@0
  1620
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  1621
//!                2. Initialize Screen
sl@0
  1622
//!                3. Set Display Mode
sl@0
  1623
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1624
//!                5. Get available Orientations
sl@0
  1625
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1626
//!                7. SetShadowMode (shadowMode = EFade)
sl@0
  1627
//!                8. Call WriteBinary (drawMode = EDrawModeAND; numRect = 9; delay=100000)
sl@0
  1628
//!                9. Destroy screen instance
sl@0
  1629
//!@SYMTestStatus		Verified
sl@0
  1630
//!@SYMTestPriority		Normal
sl@0
  1631
//!@SYMTestExpectedResults
sl@0
  1632
//!                Display mode is set to EColor16MA without any Error .if the Display mode is not supported module should leave with proper error. The operation is performed without any errors.
sl@0
  1633
//!@SYMTestType			CIT
sl@0
  1634
sl@0
  1635
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1636
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1637
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0041-0001-NewScreenDeviceL_command01
sl@0
  1638
		COMMAND		scrndrv		InitScreen
sl@0
  1639
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1640
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0041-0001-SetAutoUpdate_command04
sl@0
  1641
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1642
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0041-0001-SetOrientation_command06
sl@0
  1643
		COMMAND		scrndrv		SetShadowMode			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0041-0001-SetShadowMode_command07
sl@0
  1644
		COMMAND		scrndrv		WriteBinary			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0041-0001-WriteBinary_command08
sl@0
  1645
		COMMAND		scrndrv		~
sl@0
  1646
	END_TEST_BLOCK
sl@0
  1647
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0041
sl@0
  1648
sl@0
  1649
sl@0
  1650
sl@0
  1651
sl@0
  1652
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0042
sl@0
  1653
sl@0
  1654
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0042
sl@0
  1655
//!@SYMAPI
sl@0
  1656
//!                CFbsDrawDevice::WriteBinary(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1657
//!@SYMAuthor			ddamian
sl@0
  1658
//!@SYMCreationDate		5/2/2008 
sl@0
  1659
//!@SYMTestCaseDesc		Verify WriteBinay with display mode set to EColor16MU
sl@0
  1660
//!@SYMTestActions
sl@0
  1661
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  1662
//!                2. Initialize Screen
sl@0
  1663
//!                3. Set Display Mode
sl@0
  1664
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1665
//!                5. Get available Orientations
sl@0
  1666
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1667
//!                7. SetShadowMode (shadowMode = EFade)
sl@0
  1668
//!                8. Call WriteBinary (drawMode = EDrawModeAND; numRect = 9; delay=100000)
sl@0
  1669
//!                9. Destroy screen instance
sl@0
  1670
//!@SYMTestStatus		Verified
sl@0
  1671
//!@SYMTestPriority		Normal
sl@0
  1672
//!@SYMTestExpectedResults
sl@0
  1673
//!                Display mode is set to Ecolor16MU without any Error .if the Display mode is not supported module should leave with proper error. The operation is performed without any errors.
sl@0
  1674
//!@SYMTestType			CIT
sl@0
  1675
sl@0
  1676
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1677
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1678
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0042-0001-NewScreenDeviceL_command01
sl@0
  1679
		COMMAND		scrndrv		InitScreen
sl@0
  1680
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1681
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0042-0001-SetAutoUpdate_command04
sl@0
  1682
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1683
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0042-0001-SetOrientation_command06
sl@0
  1684
		COMMAND		scrndrv		SetShadowMode			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0042-0001-SetShadowMode_command07
sl@0
  1685
		COMMAND		scrndrv		WriteBinary			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0042-0001-WriteBinary_command08
sl@0
  1686
		COMMAND		scrndrv		~
sl@0
  1687
	END_TEST_BLOCK
sl@0
  1688
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0042
sl@0
  1689
sl@0
  1690
sl@0
  1691
sl@0
  1692
sl@0
  1693
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0043
sl@0
  1694
sl@0
  1695
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0043
sl@0
  1696
//!@SYMAPI
sl@0
  1697
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1698
//!@SYMAuthor			ddamian
sl@0
  1699
//!@SYMCreationDate		5/2/2008 
sl@0
  1700
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModeXOR and display mode EColor64K
sl@0
  1701
//!@SYMTestActions
sl@0
  1702
//!                1. Create Display (displayMode = EColor64K)
sl@0
  1703
//!                2. Initialize Screen
sl@0
  1704
//!                3. Set Display Mode
sl@0
  1705
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1706
//!                5. Get available Orientations
sl@0
  1707
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1708
//!                7. Call WriteBinaryLine (drawMode = EDrawModeXOR; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  1709
//!                8.- Destroy screen instance
sl@0
  1710
//!@SYMTestStatus		Verified
sl@0
  1711
//!@SYMTestPriority		Normal
sl@0
  1712
//!@SYMTestExpectedResults
sl@0
  1713
//!                Display mode is set to EColor64K without any Error .if the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1714
//!@SYMTestType			CIT
sl@0
  1715
sl@0
  1716
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1717
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1718
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0043-0001-NewScreenDeviceL_command01
sl@0
  1719
		COMMAND		scrndrv		InitScreen
sl@0
  1720
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1721
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0043-0001-SetAutoUpdate_command04
sl@0
  1722
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1723
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0043-0001-SetOrientation_command06
sl@0
  1724
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0043-0001-WriteBinaryLine_command07
sl@0
  1725
		COMMAND		scrndrv		~
sl@0
  1726
	END_TEST_BLOCK
sl@0
  1727
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0043
sl@0
  1728
sl@0
  1729
sl@0
  1730
sl@0
  1731
sl@0
  1732
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0044
sl@0
  1733
sl@0
  1734
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0044
sl@0
  1735
//!@SYMAPI
sl@0
  1736
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1737
//!@SYMAuthor			ddamian
sl@0
  1738
//!@SYMCreationDate		5/2/2008 
sl@0
  1739
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModeAND and Display mode to EColor64K
sl@0
  1740
//!@SYMTestActions
sl@0
  1741
//!                1. Create Display (displayMode = EColor64K)
sl@0
  1742
//!                2. Initialize Screen
sl@0
  1743
//!                3. Set Display Mode
sl@0
  1744
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1745
//!                5. Get available Orientations
sl@0
  1746
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1747
//!                7. Call WriteBinaryLine (drawMode = EDrawModeAND; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  1748
//!                8.- Destroy screen instance
sl@0
  1749
//!@SYMTestStatus		Verified
sl@0
  1750
//!@SYMTestPriority		Normal
sl@0
  1751
//!@SYMTestExpectedResults
sl@0
  1752
//!                Display mode is set to EColor64K without any Error .if the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1753
//!@SYMTestType			CIT
sl@0
  1754
sl@0
  1755
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1756
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1757
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0044-0001-NewScreenDeviceL_command01
sl@0
  1758
		COMMAND		scrndrv		InitScreen
sl@0
  1759
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1760
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0044-0001-SetAutoUpdate_command04
sl@0
  1761
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1762
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0044-0001-SetOrientation_command06
sl@0
  1763
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0044-0001-WriteBinaryLine_command07
sl@0
  1764
		COMMAND		scrndrv		~
sl@0
  1765
	END_TEST_BLOCK
sl@0
  1766
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0044
sl@0
  1767
sl@0
  1768
sl@0
  1769
sl@0
  1770
sl@0
  1771
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0045
sl@0
  1772
sl@0
  1773
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0045
sl@0
  1774
//!@SYMAPI
sl@0
  1775
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1776
//!@SYMAuthor			ddamian
sl@0
  1777
//!@SYMCreationDate		5/2/2008 
sl@0
  1778
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModeOR and Display mode EColor64K
sl@0
  1779
//!@SYMTestActions
sl@0
  1780
//!                1. Create Display (displayMode = EColor64K)
sl@0
  1781
//!                2. Initialize Screen
sl@0
  1782
//!                3. Set Display Mode
sl@0
  1783
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1784
//!                5. Get available Orientations
sl@0
  1785
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1786
//!                7. Call WriteBinaryLine (drawMode = EDrawModeOR; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  1787
//!                8.- Destroy screen instance
sl@0
  1788
//!@SYMTestStatus		Verified
sl@0
  1789
//!@SYMTestPriority		Normal
sl@0
  1790
//!@SYMTestExpectedResults
sl@0
  1791
//!                Display mode is set to EColor64K without any Error .if the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1792
//!@SYMTestType			CIT
sl@0
  1793
sl@0
  1794
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1795
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1796
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0045-0001-NewScreenDeviceL_command01
sl@0
  1797
		COMMAND		scrndrv		InitScreen
sl@0
  1798
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1799
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0045-0001-SetAutoUpdate_command04
sl@0
  1800
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1801
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0045-0001-SetOrientation_command06
sl@0
  1802
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0045-0001-WriteBinaryLine_command07
sl@0
  1803
		COMMAND		scrndrv		~
sl@0
  1804
	END_TEST_BLOCK
sl@0
  1805
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0045
sl@0
  1806
sl@0
  1807
sl@0
  1808
sl@0
  1809
sl@0
  1810
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0046
sl@0
  1811
sl@0
  1812
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0046
sl@0
  1813
//!@SYMAPI
sl@0
  1814
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1815
//!@SYMAuthor			ddamian
sl@0
  1816
//!@SYMCreationDate		5/2/2008 
sl@0
  1817
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModeNOTPEN and display mode EColor64K
sl@0
  1818
//!@SYMTestActions
sl@0
  1819
//!                1. Create Display (displayMode = EColor64K)
sl@0
  1820
//!                2. Initialize Screen
sl@0
  1821
//!                3. Set Display Mode
sl@0
  1822
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1823
//!                5. Get available Orientations
sl@0
  1824
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1825
//!                7. Call WriteBinaryLine (drawMode = EDrawModeNOTPEN; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  1826
//!                8.- Destroy screen instance
sl@0
  1827
//!@SYMTestStatus		Verified
sl@0
  1828
//!@SYMTestPriority		Normal
sl@0
  1829
//!@SYMTestExpectedResults
sl@0
  1830
//!                Display mode is set to EColor64K without any Error .if the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1831
//!@SYMTestType			CIT
sl@0
  1832
sl@0
  1833
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1834
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1835
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0046-0001-NewScreenDeviceL_command01
sl@0
  1836
		COMMAND		scrndrv		InitScreen
sl@0
  1837
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1838
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0046-0001-SetAutoUpdate_command04
sl@0
  1839
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1840
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0046-0001-SetOrientation_command06
sl@0
  1841
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0046-0001-WriteBinaryLine_command07
sl@0
  1842
		COMMAND		scrndrv		~
sl@0
  1843
	END_TEST_BLOCK
sl@0
  1844
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0046
sl@0
  1845
sl@0
  1846
sl@0
  1847
sl@0
  1848
sl@0
  1849
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0047
sl@0
  1850
sl@0
  1851
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0047
sl@0
  1852
//!@SYMAPI
sl@0
  1853
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1854
//!@SYMAuthor			ddamian
sl@0
  1855
//!@SYMCreationDate		5/2/2008 
sl@0
  1856
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModePEN and Display mode to EColor64K
sl@0
  1857
//!@SYMTestActions
sl@0
  1858
//!                1. Create Display (displayMode = EColor64K)
sl@0
  1859
//!                2. Initialize Screen
sl@0
  1860
//!                3. Set Display Mode
sl@0
  1861
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1862
//!                5. Get available Orientations
sl@0
  1863
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1864
//!                7. Call WriteBinaryLine (drawMode = EDrawModePEN; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  1865
//!                8.- Destroy screen instance
sl@0
  1866
//!@SYMTestStatus		Verified
sl@0
  1867
//!@SYMTestPriority		Normal
sl@0
  1868
//!@SYMTestExpectedResults
sl@0
  1869
//!                Display mode is set to EColor64K without any Error .If the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1870
//!@SYMTestType			CIT
sl@0
  1871
sl@0
  1872
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1873
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1874
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0047-0001-NewScreenDeviceL_command01
sl@0
  1875
		COMMAND		scrndrv		InitScreen
sl@0
  1876
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1877
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0047-0001-SetAutoUpdate_command04
sl@0
  1878
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1879
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0047-0001-SetOrientation_command06
sl@0
  1880
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0047-0001-WriteBinaryLine_command07
sl@0
  1881
		COMMAND		scrndrv		~
sl@0
  1882
	END_TEST_BLOCK
sl@0
  1883
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0047
sl@0
  1884
sl@0
  1885
sl@0
  1886
sl@0
  1887
sl@0
  1888
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0048
sl@0
  1889
sl@0
  1890
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0048
sl@0
  1891
//!@SYMAPI
sl@0
  1892
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1893
//!@SYMAuthor			ddamian
sl@0
  1894
//!@SYMCreationDate		5/2/2008 
sl@0
  1895
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModePEN and Display mode to EColor16MA
sl@0
  1896
//!@SYMTestActions
sl@0
  1897
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  1898
//!                2. Initialize Screen
sl@0
  1899
//!                3. Set Display Mode
sl@0
  1900
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1901
//!                5. Get available Orientations
sl@0
  1902
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1903
//!                7. Call WriteBinaryLine (drawMode = EDrawModePEN; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  1904
//!                8.- Destroy screen instance
sl@0
  1905
//!@SYMTestStatus		Verified
sl@0
  1906
//!@SYMTestPriority		Normal
sl@0
  1907
//!@SYMTestExpectedResults
sl@0
  1908
//!                Display mode is set to EColor16MA without any Error. If the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1909
//!@SYMTestType			CIT
sl@0
  1910
sl@0
  1911
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1912
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1913
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0048-0001-NewScreenDeviceL_command01
sl@0
  1914
		COMMAND		scrndrv		InitScreen
sl@0
  1915
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1916
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0048-0001-SetAutoUpdate_command04
sl@0
  1917
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1918
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0048-0001-SetOrientation_command06
sl@0
  1919
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0048-0001-WriteBinaryLine_command07
sl@0
  1920
		COMMAND		scrndrv		~
sl@0
  1921
	END_TEST_BLOCK
sl@0
  1922
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0048
sl@0
  1923
sl@0
  1924
sl@0
  1925
sl@0
  1926
sl@0
  1927
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0049
sl@0
  1928
sl@0
  1929
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0049
sl@0
  1930
//!@SYMAPI
sl@0
  1931
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1932
//!@SYMAuthor			ddamian
sl@0
  1933
//!@SYMCreationDate		5/2/2008 
sl@0
  1934
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModeXOR and Display mode EColor16MU
sl@0
  1935
//!@SYMTestActions
sl@0
  1936
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  1937
//!                2. Initialize Screen
sl@0
  1938
//!                3. Set Display Mode
sl@0
  1939
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1940
//!                5. Get available Orientations
sl@0
  1941
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1942
//!                7. Call WriteBinaryLine (drawMode = EDrawModeXOR; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  1943
//!                8.- Destroy screen instance
sl@0
  1944
//!@SYMTestStatus		Verified
sl@0
  1945
//!@SYMTestPriority		Normal
sl@0
  1946
//!@SYMTestExpectedResults
sl@0
  1947
//!                Display mode is set to EColor16MU without any Error. If the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1948
//!@SYMTestType			CIT
sl@0
  1949
sl@0
  1950
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1951
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1952
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0049-0001-NewScreenDeviceL_command01
sl@0
  1953
		COMMAND		scrndrv		InitScreen
sl@0
  1954
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1955
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0049-0001-SetAutoUpdate_command04
sl@0
  1956
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1957
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0049-0001-SetOrientation_command06
sl@0
  1958
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0049-0001-WriteBinaryLine_command07
sl@0
  1959
		COMMAND		scrndrv		~
sl@0
  1960
	END_TEST_BLOCK
sl@0
  1961
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0049
sl@0
  1962
sl@0
  1963
sl@0
  1964
sl@0
  1965
sl@0
  1966
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0050
sl@0
  1967
sl@0
  1968
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0050
sl@0
  1969
//!@SYMAPI
sl@0
  1970
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  1971
//!@SYMAuthor			ddamian
sl@0
  1972
//!@SYMCreationDate		5/2/2008 
sl@0
  1973
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModeAND and Display mode EColor16MU
sl@0
  1974
//!@SYMTestActions
sl@0
  1975
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  1976
//!                2. Initialize Screen
sl@0
  1977
//!                3. Set Display Mode
sl@0
  1978
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  1979
//!                5. Get available Orientations
sl@0
  1980
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  1981
//!                7. Call WriteBinaryLine (drawMode = EDrawModeAND; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  1982
//!                8.- Destroy screen instance
sl@0
  1983
//!@SYMTestStatus		Verified
sl@0
  1984
//!@SYMTestPriority		Normal
sl@0
  1985
//!@SYMTestExpectedResults
sl@0
  1986
//!                Display mode is set to EColor16MU without any Error .if the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  1987
//!@SYMTestType			CIT
sl@0
  1988
sl@0
  1989
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  1990
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  1991
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0050-0001-NewScreenDeviceL_command01
sl@0
  1992
		COMMAND		scrndrv		InitScreen
sl@0
  1993
		COMMAND		scrndrv		SetDisplayMode
sl@0
  1994
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0050-0001-SetAutoUpdate_command04
sl@0
  1995
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  1996
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0050-0001-SetOrientation_command06
sl@0
  1997
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0050-0001-WriteBinaryLine_command07
sl@0
  1998
		COMMAND		scrndrv		~
sl@0
  1999
	END_TEST_BLOCK
sl@0
  2000
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0050
sl@0
  2001
sl@0
  2002
sl@0
  2003
sl@0
  2004
sl@0
  2005
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0051
sl@0
  2006
sl@0
  2007
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0051
sl@0
  2008
//!@SYMAPI
sl@0
  2009
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  2010
//!@SYMAuthor			ddamian
sl@0
  2011
//!@SYMCreationDate		5/2/2008 
sl@0
  2012
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModeNOTSCREEN and Display mode EColor16MU
sl@0
  2013
//!@SYMTestActions
sl@0
  2014
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  2015
//!                2. Initialize Screen
sl@0
  2016
//!                3. Set Display Mode
sl@0
  2017
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2018
//!                5. Get available Orientations
sl@0
  2019
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2020
//!                7. Call WriteBinaryLine (drawMode = EDrawModeNOTSCREEN; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  2021
//!                8.- Destroy screen instance
sl@0
  2022
//!@SYMTestStatus		Verified
sl@0
  2023
//!@SYMTestPriority		Normal
sl@0
  2024
//!@SYMTestExpectedResults
sl@0
  2025
//!                Display mode is set to EColor16MU without any Error .if the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  2026
//!@SYMTestType			CIT
sl@0
  2027
sl@0
  2028
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2029
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2030
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0051-0001-NewScreenDeviceL_command01
sl@0
  2031
		COMMAND		scrndrv		InitScreen
sl@0
  2032
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2033
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0051-0001-SetAutoUpdate_command04
sl@0
  2034
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2035
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0051-0001-SetOrientation_command06
sl@0
  2036
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0051-0001-WriteBinaryLine_command07
sl@0
  2037
		COMMAND		scrndrv		~
sl@0
  2038
	END_TEST_BLOCK
sl@0
  2039
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0051
sl@0
  2040
sl@0
  2041
sl@0
  2042
sl@0
  2043
sl@0
  2044
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0052
sl@0
  2045
sl@0
  2046
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0052
sl@0
  2047
//!@SYMAPI
sl@0
  2048
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  2049
//!@SYMAuthor			ddamian
sl@0
  2050
//!@SYMCreationDate		5/2/2008 
sl@0
  2051
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModeNOTPEN and display mode EColor16MU
sl@0
  2052
//!@SYMTestActions
sl@0
  2053
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  2054
//!                2. Initialize Screen
sl@0
  2055
//!                3. Set Display Mode
sl@0
  2056
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2057
//!                5. Get available Orientations
sl@0
  2058
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2059
//!                7. Call WriteBinaryLine (drawMode = EDrawModeNOTPEN; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  2060
//!                8.- Destroy screen instance
sl@0
  2061
//!@SYMTestStatus		Verified
sl@0
  2062
//!@SYMTestPriority		Normal
sl@0
  2063
//!@SYMTestExpectedResults
sl@0
  2064
//!                Display mode is set to EColor16MU without any Error .if the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  2065
//!@SYMTestType			CIT
sl@0
  2066
sl@0
  2067
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2068
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2069
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0052-0001-NewScreenDeviceL_command01
sl@0
  2070
		COMMAND		scrndrv		InitScreen
sl@0
  2071
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2072
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0052-0001-SetAutoUpdate_command04
sl@0
  2073
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2074
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0052-0001-SetOrientation_command06
sl@0
  2075
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0052-0001-WriteBinaryLine_command07
sl@0
  2076
		COMMAND		scrndrv		~
sl@0
  2077
	END_TEST_BLOCK
sl@0
  2078
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0052
sl@0
  2079
sl@0
  2080
sl@0
  2081
sl@0
  2082
sl@0
  2083
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0053
sl@0
  2084
sl@0
  2085
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0053
sl@0
  2086
//!@SYMAPI
sl@0
  2087
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  2088
//!@SYMAuthor			ddamian
sl@0
  2089
//!@SYMCreationDate		5/2/2008 
sl@0
  2090
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModeXOR and display mode EColor16MA
sl@0
  2091
//!@SYMTestActions
sl@0
  2092
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  2093
//!                2. Initialize Screen
sl@0
  2094
//!                3. Set Display Mode
sl@0
  2095
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2096
//!                5. Get available Orientations
sl@0
  2097
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2098
//!                7. Call WriteBinaryLine (drawMode = EDrawModeXOR; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  2099
//!                8.- Destroy screen instance
sl@0
  2100
//!@SYMTestStatus		Verified
sl@0
  2101
//!@SYMTestPriority		Normal
sl@0
  2102
//!@SYMTestExpectedResults
sl@0
  2103
//!                Display mode is set to EColor16MA without any Error .if the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  2104
//!@SYMTestType			CIT
sl@0
  2105
sl@0
  2106
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2107
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2108
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0053-0001-NewScreenDeviceL_command01
sl@0
  2109
		COMMAND		scrndrv		InitScreen
sl@0
  2110
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2111
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0053-0001-SetAutoUpdate_command04
sl@0
  2112
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2113
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0053-0001-SetOrientation_command06
sl@0
  2114
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0053-0001-WriteBinaryLine_command07
sl@0
  2115
		COMMAND		scrndrv		~
sl@0
  2116
	END_TEST_BLOCK
sl@0
  2117
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0053
sl@0
  2118
sl@0
  2119
sl@0
  2120
sl@0
  2121
sl@0
  2122
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0054
sl@0
  2123
sl@0
  2124
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0054
sl@0
  2125
//!@SYMAPI
sl@0
  2126
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  2127
//!@SYMAuthor			ddamian
sl@0
  2128
//!@SYMCreationDate		5/2/2008 
sl@0
  2129
//!@SYMTestCaseDesc		Verify WriteBinaryLine with draw mode EDrawModeAND and display mode EColor16MA
sl@0
  2130
//!@SYMTestActions
sl@0
  2131
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  2132
//!                2. Initialize Screen
sl@0
  2133
//!                3. Set Display Mode
sl@0
  2134
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2135
//!                5. Get available Orientations
sl@0
  2136
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2137
//!                7. Call WriteBinaryLine (drawMode = EDrawModeAND; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  2138
//!                8.- Destroy screen instance
sl@0
  2139
//!@SYMTestStatus		Verified
sl@0
  2140
//!@SYMTestPriority		Normal
sl@0
  2141
//!@SYMTestExpectedResults
sl@0
  2142
//!                Display mode is set to EColor16MA without any Error .if the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  2143
//!@SYMTestType			CIT
sl@0
  2144
sl@0
  2145
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2146
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2147
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0054-0001-NewScreenDeviceL_command01
sl@0
  2148
		COMMAND		scrndrv		InitScreen
sl@0
  2149
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2150
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0054-0001-SetAutoUpdate_command04
sl@0
  2151
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2152
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0054-0001-SetOrientation_command06
sl@0
  2153
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0054-0001-WriteBinaryLine_command07
sl@0
  2154
		COMMAND		scrndrv		~
sl@0
  2155
	END_TEST_BLOCK
sl@0
  2156
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0054
sl@0
  2157
sl@0
  2158
sl@0
  2159
sl@0
  2160
sl@0
  2161
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0055
sl@0
  2162
sl@0
  2163
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0055
sl@0
  2164
//!@SYMAPI
sl@0
  2165
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  2166
//!@SYMAuthor			ddamian
sl@0
  2167
//!@SYMCreationDate		5/2/2008 
sl@0
  2168
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModeNOTSCREEN and display mode EColor64K
sl@0
  2169
//!@SYMTestActions
sl@0
  2170
//!                1. Create Display (displayMode = EColor64K)
sl@0
  2171
//!                2. Initialize Screen
sl@0
  2172
//!                3. Set Display Mode
sl@0
  2173
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2174
//!                5. Get available Orientations
sl@0
  2175
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2176
//!                7. Call WriteBinaryLine (drawMode = EDrawModeNOTSCREEN; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  2177
//!                8.- Destroy screen instance
sl@0
  2178
//!@SYMTestStatus		Verified
sl@0
  2179
//!@SYMTestPriority		Normal
sl@0
  2180
//!@SYMTestExpectedResults
sl@0
  2181
//!                Display mode is set to EColor64K without any Error. If the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  2182
//!@SYMTestType			CIT
sl@0
  2183
sl@0
  2184
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2185
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2186
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0055-0001-NewScreenDeviceL_command01
sl@0
  2187
		COMMAND		scrndrv		InitScreen
sl@0
  2188
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2189
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0055-0001-SetAutoUpdate_command04
sl@0
  2190
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2191
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0055-0001-SetOrientation_command06
sl@0
  2192
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0055-0001-WriteBinaryLine_command07
sl@0
  2193
		COMMAND		scrndrv		~
sl@0
  2194
	END_TEST_BLOCK
sl@0
  2195
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0055
sl@0
  2196
sl@0
  2197
sl@0
  2198
sl@0
  2199
sl@0
  2200
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0056
sl@0
  2201
sl@0
  2202
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0056
sl@0
  2203
//!@SYMAPI
sl@0
  2204
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  2205
//!@SYMAuthor			ddamian
sl@0
  2206
//!@SYMCreationDate		5/2/2008 
sl@0
  2207
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModeNOTSCREEN and display mode EColor16MA
sl@0
  2208
//!@SYMTestActions
sl@0
  2209
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  2210
//!                2. Initialize Screen
sl@0
  2211
//!                3. Set Display Mode
sl@0
  2212
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2213
//!                5. Get available Orientations
sl@0
  2214
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2215
//!                7. Call WriteBinaryLine (drawMode = EDrawModeNOTSCREEN; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  2216
//!                8.- Destroy screen instance
sl@0
  2217
//!@SYMTestStatus		Verified
sl@0
  2218
//!@SYMTestPriority		Normal
sl@0
  2219
//!@SYMTestExpectedResults
sl@0
  2220
//!                Display mode is set to EColor16MA without any Error .if the Display mode is not supported module should leave with proper error
sl@0
  2221
//!                Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  2222
//!@SYMTestType			CIT
sl@0
  2223
sl@0
  2224
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2225
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2226
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0056-0001-NewScreenDeviceL_command01
sl@0
  2227
		COMMAND		scrndrv		InitScreen
sl@0
  2228
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2229
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0056-0001-SetAutoUpdate_command04
sl@0
  2230
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2231
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0056-0001-SetOrientation_command06
sl@0
  2232
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0056-0001-WriteBinaryLine_command07
sl@0
  2233
		COMMAND		scrndrv		~
sl@0
  2234
	END_TEST_BLOCK
sl@0
  2235
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0056
sl@0
  2236
sl@0
  2237
sl@0
  2238
sl@0
  2239
sl@0
  2240
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0057
sl@0
  2241
sl@0
  2242
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0057
sl@0
  2243
//!@SYMAPI
sl@0
  2244
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  2245
//!@SYMAuthor			ddamian
sl@0
  2246
//!@SYMCreationDate		5/2/2008 
sl@0
  2247
//!@SYMTestCaseDesc		Verify WriteBinaryLine with draw mode EDrawModeNOTPEN and display mode EColor16MA
sl@0
  2248
//!@SYMTestActions
sl@0
  2249
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  2250
//!                2. Initialize Screen
sl@0
  2251
//!                3. Set Display Mode
sl@0
  2252
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2253
//!                5. Get available Orientations
sl@0
  2254
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2255
//!                7. Call WriteBinaryLine (drawMode = EDrawModeNOTPEN; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  2256
//!                8.- Destroy screen instance
sl@0
  2257
//!@SYMTestStatus		Verified
sl@0
  2258
//!@SYMTestPriority		Normal
sl@0
  2259
//!@SYMTestExpectedResults
sl@0
  2260
//!                Display mode is set to EColor16MA without any Error .if the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  2261
//!@SYMTestType			CIT
sl@0
  2262
sl@0
  2263
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2264
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2265
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0057-0001-NewScreenDeviceL_command01
sl@0
  2266
		COMMAND		scrndrv		InitScreen
sl@0
  2267
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2268
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0057-0001-SetAutoUpdate_command04
sl@0
  2269
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2270
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0057-0001-SetOrientation_command06
sl@0
  2271
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0057-0001-WriteBinaryLine_command07
sl@0
  2272
		COMMAND		scrndrv		~
sl@0
  2273
	END_TEST_BLOCK
sl@0
  2274
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0057
sl@0
  2275
sl@0
  2276
sl@0
  2277
sl@0
  2278
sl@0
  2279
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0058
sl@0
  2280
sl@0
  2281
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0058
sl@0
  2282
//!@SYMAPI
sl@0
  2283
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  2284
//!@SYMAuthor			ddamian
sl@0
  2285
//!@SYMCreationDate		5/2/2008 
sl@0
  2286
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModeOR and display mode EColor16MA
sl@0
  2287
//!@SYMTestActions
sl@0
  2288
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  2289
//!                2. Initialize Screen
sl@0
  2290
//!                3. Set Display Mode
sl@0
  2291
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2292
//!                5. Get available Orientations
sl@0
  2293
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2294
//!                7. Call WriteBinaryLine (drawMode = EDrawModeOR; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  2295
//!                8.- Destroy screen instance
sl@0
  2296
//!@SYMTestStatus		Verified
sl@0
  2297
//!@SYMTestPriority		Normal
sl@0
  2298
//!@SYMTestExpectedResults
sl@0
  2299
//!                Display mode is set to EColor16MA without any Error .if the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  2300
//!@SYMTestType			CIT
sl@0
  2301
sl@0
  2302
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2303
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2304
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0058-0001-NewScreenDeviceL_command01
sl@0
  2305
		COMMAND		scrndrv		InitScreen
sl@0
  2306
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2307
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0058-0001-SetAutoUpdate_command04
sl@0
  2308
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2309
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0058-0001-SetOrientation_command06
sl@0
  2310
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0058-0001-WriteBinaryLine_command07
sl@0
  2311
		COMMAND		scrndrv		~
sl@0
  2312
	END_TEST_BLOCK
sl@0
  2313
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0058
sl@0
  2314
sl@0
  2315
sl@0
  2316
sl@0
  2317
sl@0
  2318
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0059
sl@0
  2319
sl@0
  2320
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0059
sl@0
  2321
//!@SYMAPI
sl@0
  2322
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  2323
//!@SYMAuthor			ddamian
sl@0
  2324
//!@SYMCreationDate		5/2/2008 
sl@0
  2325
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModeOR and display mode EColor16MU
sl@0
  2326
//!@SYMTestActions
sl@0
  2327
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  2328
//!                2. Initialize Screen
sl@0
  2329
//!                3. Set Display Mode
sl@0
  2330
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2331
//!                5. Get available Orientations
sl@0
  2332
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2333
//!                7. Call WriteBinaryLine (drawMode = EDrawModeOR; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  2334
//!                8.- Destroy screen instance
sl@0
  2335
//!@SYMTestStatus		Verified
sl@0
  2336
//!@SYMTestPriority		Normal
sl@0
  2337
//!@SYMTestExpectedResults
sl@0
  2338
//!                Display mode is set to EColor16MU without any Error .if the Display mode is not supported module should leave with proper error. Depending on shadow/fade flag the pixel at given location is updated.
sl@0
  2339
//!@SYMTestType			CIT
sl@0
  2340
sl@0
  2341
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2342
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2343
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0059-0001-NewScreenDeviceL_command01
sl@0
  2344
		COMMAND		scrndrv		InitScreen
sl@0
  2345
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2346
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0059-0001-SetAutoUpdate_command04
sl@0
  2347
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2348
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0059-0001-SetOrientation_command06
sl@0
  2349
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0059-0001-WriteBinaryLine_command07
sl@0
  2350
		COMMAND		scrndrv		~
sl@0
  2351
	END_TEST_BLOCK
sl@0
  2352
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0059
sl@0
  2353
sl@0
  2354
sl@0
  2355
sl@0
  2356
sl@0
  2357
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0060
sl@0
  2358
sl@0
  2359
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0060
sl@0
  2360
//!@SYMAPI
sl@0
  2361
//!                CFbsDrawDevice::WriteBinaryLine(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aLength, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode)=0;
sl@0
  2362
//!@SYMAuthor			ddamian
sl@0
  2363
//!@SYMCreationDate		5/2/2008 
sl@0
  2364
//!@SYMTestCaseDesc		Verify WriteBinaryLine with drawmode EDrawModePEN and display mode EColor16MU
sl@0
  2365
//!@SYMTestActions
sl@0
  2366
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  2367
//!                2. Initialize Screen
sl@0
  2368
//!                3. Set Display Mode
sl@0
  2369
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2370
//!                5. Get available Orientations
sl@0
  2371
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2372
//!                7. Call WriteBinaryLine (drawMode = EDrawModePEN; numRect = 0; backColor = {COLOR,RgbWhite}; shadowMode = EFade; delay=100000)
sl@0
  2373
//!                8.- Destroy screen instance
sl@0
  2374
//!@SYMTestStatus		Verified
sl@0
  2375
//!@SYMTestPriority		Normal
sl@0
  2376
//!@SYMTestExpectedResults
sl@0
  2377
//!                Display mode is set to Ecolor16MU without any Error .if the Display mode is not supported module should leave with proper error. The operation is performed without any errors.
sl@0
  2378
//!@SYMTestType			CIT
sl@0
  2379
sl@0
  2380
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2381
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2382
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0060-0001-NewScreenDeviceL_command01
sl@0
  2383
		COMMAND		scrndrv		InitScreen
sl@0
  2384
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2385
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0060-0001-SetAutoUpdate_command04
sl@0
  2386
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2387
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0060-0001-SetOrientation_command06
sl@0
  2388
		COMMAND		scrndrv		WriteBinaryLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0060-0001-WriteBinaryLine_command07
sl@0
  2389
		COMMAND		scrndrv		~
sl@0
  2390
	END_TEST_BLOCK
sl@0
  2391
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0060
sl@0
  2392
sl@0
  2393
sl@0
  2394
sl@0
  2395
sl@0
  2396
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0061
sl@0
  2397
sl@0
  2398
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0061
sl@0
  2399
//!@SYMAPI
sl@0
  2400
//!                CFbsDrawDevice::WriteBinaryLineVertical(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode, TBool aUp)=0;
sl@0
  2401
//!@SYMAuthor			ddamian
sl@0
  2402
//!@SYMCreationDate		5/2/2008 
sl@0
  2403
//!@SYMTestCaseDesc		Verify WriteBinaryLineVertical with display mode EColor64K
sl@0
  2404
//!@SYMTestActions
sl@0
  2405
//!                1. Create Display (displayMode = EColor64K)
sl@0
  2406
//!                2. Initialize Screen
sl@0
  2407
//!                3. Set Display Mode
sl@0
  2408
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2409
//!                5. Get available Orientations
sl@0
  2410
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2411
//!                7. SetShadowMode (shadowMode = EFade)
sl@0
  2412
//!                8. Call WriteBinaryLineVertical (drawMode = EDrawModeAND; numRect = 9; delay=100000)
sl@0
  2413
//!                9. Destroy screen instance
sl@0
  2414
//!@SYMTestStatus		Verified
sl@0
  2415
//!@SYMTestPriority		Normal
sl@0
  2416
//!@SYMTestExpectedResults
sl@0
  2417
//!                Display mode is set to EColor64K without any Error .if the Display mode is not supported module should leave with proper error. Line is written down wards(increasimg Y )or upwards(decreasing Y) depending on the Flag.
sl@0
  2418
//!@SYMTestType			CIT
sl@0
  2419
sl@0
  2420
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2421
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2422
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0061-0001-NewScreenDeviceL_command01
sl@0
  2423
		COMMAND		scrndrv		InitScreen
sl@0
  2424
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2425
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0061-0001-SetAutoUpdate_command04
sl@0
  2426
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2427
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0061-0001-SetOrientation_command06
sl@0
  2428
		COMMAND		scrndrv		SetShadowMode			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0061-0001-SetShadowMode_command07
sl@0
  2429
		COMMAND		scrndrv		WriteBinaryLineVertical			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0061-0001-WriteBinaryLineVertical_command08
sl@0
  2430
		COMMAND		scrndrv		~
sl@0
  2431
	END_TEST_BLOCK
sl@0
  2432
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0061
sl@0
  2433
sl@0
  2434
sl@0
  2435
sl@0
  2436
sl@0
  2437
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0062
sl@0
  2438
sl@0
  2439
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0062
sl@0
  2440
//!@SYMAPI
sl@0
  2441
//!                CFbsDrawDevice::WriteBinaryLineVertical(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode, TBool aUp)=0;
sl@0
  2442
//!@SYMAuthor			ddamian
sl@0
  2443
//!@SYMCreationDate		5/2/2008 
sl@0
  2444
//!@SYMTestCaseDesc		Verify WriteBinaryLineVertical with display mode EColor16MA
sl@0
  2445
//!@SYMTestActions
sl@0
  2446
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  2447
//!                2. Initialize Screen
sl@0
  2448
//!                3. Set Display Mode
sl@0
  2449
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2450
//!                5. Get available Orientations
sl@0
  2451
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2452
//!                7. SetShadowMode (shadowMode = EFade)
sl@0
  2453
//!                8. Call WriteBinaryLineVertical (drawMode = EDrawModeAND; numRect = 9; delay=100000)
sl@0
  2454
//!                9. Destroy screen instance
sl@0
  2455
//!@SYMTestStatus		Verified
sl@0
  2456
//!@SYMTestPriority		Normal
sl@0
  2457
//!@SYMTestExpectedResults
sl@0
  2458
//!                Display mode is set to EColor16MA without any Error .if the Display mode is not supported module should leave with proper error. Line is written downwards(increasimg Y )or upwards(decreasing Y) depending on the Flag.
sl@0
  2459
//!                
sl@0
  2460
//!@SYMTestType			CIT
sl@0
  2461
sl@0
  2462
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2463
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2464
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0062-0001-NewScreenDeviceL_command01
sl@0
  2465
		COMMAND		scrndrv		InitScreen
sl@0
  2466
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2467
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0062-0001-SetAutoUpdate_command04
sl@0
  2468
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2469
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0062-0001-SetOrientation_command06
sl@0
  2470
		COMMAND		scrndrv		SetShadowMode			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0062-0001-SetShadowMode_command07
sl@0
  2471
		COMMAND		scrndrv		WriteBinaryLineVertical			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0062-0001-WriteBinaryLineVertical_command08
sl@0
  2472
		COMMAND		scrndrv		~
sl@0
  2473
	END_TEST_BLOCK
sl@0
  2474
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0062
sl@0
  2475
sl@0
  2476
sl@0
  2477
sl@0
  2478
sl@0
  2479
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0063
sl@0
  2480
sl@0
  2481
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0063
sl@0
  2482
//!@SYMAPI
sl@0
  2483
//!                CFbsDrawDevice::WriteBinaryLineVertical(TInt aX, TInt aY, TUint32 {ptr}aBuffer, TInt aHeight, TRgb aColor, CGraphicsContext::TDrawMode aDrawMode, TBool aUp)=0;
sl@0
  2484
//!@SYMAuthor			ddamian
sl@0
  2485
//!@SYMCreationDate		5/2/2008 
sl@0
  2486
//!@SYMTestCaseDesc		Verify WriteBinaryLineVertical with display mode EColor16MU
sl@0
  2487
//!@SYMTestActions
sl@0
  2488
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  2489
//!                2. Initialize Screen
sl@0
  2490
//!                3. Set Display Mode
sl@0
  2491
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2492
//!                5. Get available Orientations
sl@0
  2493
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2494
//!                7. SetShadowMode (shadowMode = EFade)
sl@0
  2495
//!                8. Call WriteBinaryLineVertical (drawMode = EDrawModeAND; numRect = 9; delay=100000)
sl@0
  2496
//!                9. Destroy screen instance
sl@0
  2497
//!@SYMTestStatus		Verified
sl@0
  2498
//!@SYMTestPriority		Normal
sl@0
  2499
//!@SYMTestExpectedResults
sl@0
  2500
//!                Display mode is set to EColor16MU without any Error .if the Display mode is not supported module should leave with proper error. Line is written down wards(increasimg Y )or upwards(decreasing Y) depending on the Flag.
sl@0
  2501
//!@SYMTestType			CIT
sl@0
  2502
sl@0
  2503
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2504
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2505
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0063-0001-NewScreenDeviceL_command01
sl@0
  2506
		COMMAND		scrndrv		InitScreen
sl@0
  2507
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2508
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0063-0001-SetAutoUpdate_command04
sl@0
  2509
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2510
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0063-0001-SetOrientation_command06
sl@0
  2511
		COMMAND		scrndrv		SetShadowMode			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0063-0001-SetShadowMode_command07
sl@0
  2512
		COMMAND		scrndrv		WriteBinaryLineVertical			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0063-0001-WriteBinaryLineVertical_command08
sl@0
  2513
		COMMAND		scrndrv		~
sl@0
  2514
	END_TEST_BLOCK
sl@0
  2515
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0063
sl@0
  2516
sl@0
  2517
sl@0
  2518
sl@0
  2519
sl@0
  2520
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0064
sl@0
  2521
sl@0
  2522
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0064
sl@0
  2523
//!@SYMAPI
sl@0
  2524
//!                CFbsDrawDevice::ShadowArea(const TRect {ref});
sl@0
  2525
//!@SYMAuthor			ddamian
sl@0
  2526
//!@SYMCreationDate		5/2/2008 
sl@0
  2527
//!@SYMTestCaseDesc		Verify ShadowArea with Display mode set to EColor64K
sl@0
  2528
//!@SYMTestActions
sl@0
  2529
//!                1. Create Display (displayMode = EColor64K)
sl@0
  2530
//!                2. Initialize Screen
sl@0
  2531
//!                3. Set Display Mode
sl@0
  2532
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2533
//!                5. Get available Orientations
sl@0
  2534
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2535
//!                7. Call ShadowArea (delay=100000)
sl@0
  2536
//!                8.- Destroy screen instance
sl@0
  2537
//!@SYMTestStatus		Verified
sl@0
  2538
//!@SYMTestPriority		Normal
sl@0
  2539
//!@SYMTestExpectedResults
sl@0
  2540
//!                Display mode is set to EColor64K without any Error .if the Display mode is not supported module should leave with proper error. The Area with rectangle size is shadow processed.
sl@0
  2541
//!@SYMTestType			CIT
sl@0
  2542
sl@0
  2543
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2544
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2545
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0064-0001-NewScreenDeviceL_command01
sl@0
  2546
		COMMAND		scrndrv		InitScreen
sl@0
  2547
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2548
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0064-0001-SetAutoUpdate_command04
sl@0
  2549
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2550
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0064-0001-SetOrientation_command06
sl@0
  2551
		COMMAND		scrndrv		ShadowArea			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0064-0001-ShadowArea_command07
sl@0
  2552
		COMMAND		scrndrv		~
sl@0
  2553
	END_TEST_BLOCK
sl@0
  2554
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0064
sl@0
  2555
sl@0
  2556
sl@0
  2557
sl@0
  2558
sl@0
  2559
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0065
sl@0
  2560
sl@0
  2561
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0065
sl@0
  2562
//!@SYMAPI
sl@0
  2563
//!                CFbsDrawDevice::ShadowArea(const TRect {ref});
sl@0
  2564
//!@SYMAuthor			ddamian
sl@0
  2565
//!@SYMCreationDate		5/2/2008 
sl@0
  2566
//!@SYMTestCaseDesc		Verify ShadowArea with Display mode set to EColor16MA
sl@0
  2567
//!@SYMTestActions
sl@0
  2568
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  2569
//!                2. Initialize Screen
sl@0
  2570
//!                3. Set Display Mode
sl@0
  2571
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2572
//!                5. Get available Orientations
sl@0
  2573
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2574
//!                7. Call ShadowArea (delay=100000)
sl@0
  2575
//!                8.- Destroy screen instance
sl@0
  2576
//!@SYMTestStatus		Verified
sl@0
  2577
//!@SYMTestPriority		Normal
sl@0
  2578
//!@SYMTestExpectedResults
sl@0
  2579
//!                Display mode is set to EColor16MA without any Error .if the Display mode is not supported module should leave with proper error. The Area with rectangle size is shadow processed.
sl@0
  2580
//!@SYMTestType			CIT
sl@0
  2581
sl@0
  2582
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2583
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2584
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0065-0001-NewScreenDeviceL_command01
sl@0
  2585
		COMMAND		scrndrv		InitScreen
sl@0
  2586
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2587
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0065-0001-SetAutoUpdate_command04
sl@0
  2588
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2589
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0065-0001-SetOrientation_command06
sl@0
  2590
		COMMAND		scrndrv		ShadowArea			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0065-0001-ShadowArea_command07
sl@0
  2591
		COMMAND		scrndrv		~
sl@0
  2592
	END_TEST_BLOCK
sl@0
  2593
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0065
sl@0
  2594
sl@0
  2595
sl@0
  2596
sl@0
  2597
sl@0
  2598
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0066
sl@0
  2599
sl@0
  2600
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0066
sl@0
  2601
//!@SYMAPI
sl@0
  2602
//!                CFbsDrawDevice::ShadowArea(const TRect {ref});
sl@0
  2603
//!@SYMAuthor			ddamian
sl@0
  2604
//!@SYMCreationDate		5/2/2008 
sl@0
  2605
//!@SYMTestCaseDesc		Verify ShadowArea with Display mode set to EColor16MU
sl@0
  2606
//!@SYMTestActions
sl@0
  2607
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  2608
//!                2. Initialize Screen
sl@0
  2609
//!                3. Set Display Mode
sl@0
  2610
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2611
//!                5. Get available Orientations
sl@0
  2612
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2613
//!                7. Call ShadowArea (delay=100000)
sl@0
  2614
//!                8.- Destroy screen instance
sl@0
  2615
//!@SYMTestStatus		Verified
sl@0
  2616
//!@SYMTestPriority		Normal
sl@0
  2617
//!@SYMTestExpectedResults
sl@0
  2618
//!                Display mode is set to EColor16MU without any Error .if the Display mode is not supported module should leave with proper error. The Area with rectangle size is shadow processed.
sl@0
  2619
//!@SYMTestType			CIT
sl@0
  2620
sl@0
  2621
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2622
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2623
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0066-0001-NewScreenDeviceL_command01
sl@0
  2624
		COMMAND		scrndrv		InitScreen
sl@0
  2625
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2626
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0066-0001-SetAutoUpdate_command04
sl@0
  2627
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2628
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0066-0001-SetOrientation_command06
sl@0
  2629
		COMMAND		scrndrv		ShadowArea			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0066-0001-ShadowArea_command07
sl@0
  2630
		COMMAND		scrndrv		~
sl@0
  2631
	END_TEST_BLOCK
sl@0
  2632
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0066
sl@0
  2633
sl@0
  2634
sl@0
  2635
sl@0
  2636
sl@0
  2637
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0067
sl@0
  2638
sl@0
  2639
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0067
sl@0
  2640
//!@SYMAPI
sl@0
  2641
//!                CFbsDrawDevice::WriteRgbAlphaLine(TInt aX, TInt aY, TInt aLength, TUint8 {ptr}aRgbBuffer, TUint8 {ptr}aMaskBuffer)=0;
sl@0
  2642
//!@SYMAuthor			ddamian
sl@0
  2643
//!@SYMCreationDate		5/2/2008 
sl@0
  2644
//!@SYMTestCaseDesc		Verify WriteRgbAlphaLine with  Display mode EColor64K
sl@0
  2645
//!@SYMTestActions
sl@0
  2646
//!                1. Create Display (displayMode = EColor64K)
sl@0
  2647
//!                2. Initialize Screen
sl@0
  2648
//!                3. Set Display Mode
sl@0
  2649
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2650
//!                5. Get available Orientations
sl@0
  2651
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2652
//!                7. Call WriteRGBAlphaLine (drawMode = EDrawModeAND; delay=100000)
sl@0
  2653
//!                8.- Destroy screen instance
sl@0
  2654
//!@SYMTestStatus		Verified
sl@0
  2655
//!@SYMTestPriority		Normal
sl@0
  2656
//!@SYMTestExpectedResults
sl@0
  2657
//!                Display mode is set to EColor64K without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The calculated alpha blended pixel is written to the destination that is screen or BitMap.
sl@0
  2658
//!@SYMTestType			CIT
sl@0
  2659
sl@0
  2660
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2661
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2662
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0067-0001-NewScreenDeviceL_command01
sl@0
  2663
		COMMAND		scrndrv		InitScreen
sl@0
  2664
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2665
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0067-0001-SetAutoUpdate_command04
sl@0
  2666
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2667
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0067-0001-SetOrientation_command06
sl@0
  2668
		COMMAND		scrndrv		WriteRGBAlphaLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0067-0001-WriteRGBAlphaLine_command07
sl@0
  2669
		COMMAND		scrndrv		~
sl@0
  2670
	END_TEST_BLOCK
sl@0
  2671
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0067
sl@0
  2672
sl@0
  2673
sl@0
  2674
sl@0
  2675
sl@0
  2676
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0068
sl@0
  2677
sl@0
  2678
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0068
sl@0
  2679
//!@SYMAPI
sl@0
  2680
//!                CFbsDrawDevice::WriteRgbAlphaLine(TInt aX, TInt aY, TInt aLength, TUint8 {ptr}aRgbBuffer, TUint8 {ptr}aMaskBuffer)=0;
sl@0
  2681
//!@SYMAuthor			ddamian
sl@0
  2682
//!@SYMCreationDate		5/2/2008 
sl@0
  2683
//!@SYMTestCaseDesc		Verify WriteRgbAlphaLine with Display mode EColor16MA
sl@0
  2684
//!@SYMTestActions
sl@0
  2685
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  2686
//!                2. Initialize Screen
sl@0
  2687
//!                3. Set Display Mode
sl@0
  2688
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2689
//!                5. Get available Orientations
sl@0
  2690
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2691
//!                7. Call WriteRGBAlphaLine (drawMode = EDrawModeAND; delay=100000)
sl@0
  2692
//!                8.- Destroy screen instance
sl@0
  2693
//!@SYMTestStatus		Verified
sl@0
  2694
//!@SYMTestPriority		Normal
sl@0
  2695
//!@SYMTestExpectedResults
sl@0
  2696
//!                Display mode is set to EColor16MA without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The calculated alpha blended pixel is written to the destination that is screen or BitMap.
sl@0
  2697
//!@SYMTestType			CIT
sl@0
  2698
sl@0
  2699
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2700
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2701
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0068-0001-NewScreenDeviceL_command01
sl@0
  2702
		COMMAND		scrndrv		InitScreen
sl@0
  2703
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2704
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0068-0001-SetAutoUpdate_command04
sl@0
  2705
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2706
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0068-0001-SetOrientation_command06
sl@0
  2707
		COMMAND		scrndrv		WriteRGBAlphaLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0068-0001-WriteRGBAlphaLine_command07
sl@0
  2708
		COMMAND		scrndrv		~
sl@0
  2709
	END_TEST_BLOCK
sl@0
  2710
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0068
sl@0
  2711
sl@0
  2712
sl@0
  2713
sl@0
  2714
sl@0
  2715
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0069
sl@0
  2716
sl@0
  2717
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0069
sl@0
  2718
//!@SYMAPI
sl@0
  2719
//!                CFbsDrawDevice::WriteRgbAlphaLine(TInt aX, TInt aY, TInt aLength, TUint8 {ptr}aRgbBuffer, TUint8 {ptr}aMaskBuffer)=0;
sl@0
  2720
//!@SYMAuthor			ddamian
sl@0
  2721
//!@SYMCreationDate		5/2/2008 
sl@0
  2722
//!@SYMTestCaseDesc		Verify WriteRgbAlphaLine with Display mode EColor16MU
sl@0
  2723
//!@SYMTestActions
sl@0
  2724
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  2725
//!                2. Initialize Screen
sl@0
  2726
//!                3. Set Display Mode
sl@0
  2727
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2728
//!                5. Get available Orientations
sl@0
  2729
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2730
//!                7. Call WriteRGBAlphaLine (drawMode = EDrawModeAND; delay=100000)
sl@0
  2731
//!                8.- Destroy screen instance
sl@0
  2732
//!@SYMTestStatus		Verified
sl@0
  2733
//!@SYMTestPriority		Normal
sl@0
  2734
//!@SYMTestExpectedResults
sl@0
  2735
//!                Display mode is set to EColor16MU without any Error .if the Display mode is not supported module should leave with proper error. Orientation is set properly without error. The calculated alpha blended pixel is written to the destination that is screen or BitMap.
sl@0
  2736
//!@SYMTestType			CIT
sl@0
  2737
sl@0
  2738
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2739
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2740
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0069-0001-NewScreenDeviceL_command01
sl@0
  2741
		COMMAND		scrndrv		InitScreen
sl@0
  2742
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2743
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0069-0001-SetAutoUpdate_command04
sl@0
  2744
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2745
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0069-0001-SetOrientation_command06
sl@0
  2746
		COMMAND		scrndrv		WriteRGBAlphaLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0069-0001-WriteRGBAlphaLine_command07
sl@0
  2747
		COMMAND		scrndrv		~
sl@0
  2748
	END_TEST_BLOCK
sl@0
  2749
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0069
sl@0
  2750
sl@0
  2751
sl@0
  2752
sl@0
  2753
sl@0
  2754
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0070
sl@0
  2755
sl@0
  2756
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0070
sl@0
  2757
//!@SYMAPI
sl@0
  2758
//!                CFbsDrawDevice::ReadLine(TInt aX, TInt aY, TInt aLength, TAny {ptr}aBuffer, TDisplayMode aDispMode)
sl@0
  2759
//!@SYMAuthor			ddamian
sl@0
  2760
//!@SYMCreationDate		5/2/2008 
sl@0
  2761
//!@SYMTestCaseDesc		Verify ReadLine with display mode EColor64K
sl@0
  2762
//!@SYMTestActions
sl@0
  2763
//!                1. Create Display (displayMode = EColor64K)
sl@0
  2764
//!                2. Initialize Screen
sl@0
  2765
//!                3. Set Display Mode
sl@0
  2766
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2767
//!                5. Get available Orientations
sl@0
  2768
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2769
//!                7. Call ReadLine (backColor = {COLOR,RgbBlack})
sl@0
  2770
//!                8.- Destroy screen instance
sl@0
  2771
//!@SYMTestStatus		Verified
sl@0
  2772
//!@SYMTestPriority		Normal
sl@0
  2773
//!@SYMTestExpectedResults
sl@0
  2774
//!                Display mode is set to EColor64K without any Error .if the Display mode is not supported module should leave with proper error. A Line of given length is read in to the buffer.
sl@0
  2775
//!@SYMTestType			CIT
sl@0
  2776
sl@0
  2777
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2778
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2779
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0070-0001-NewScreenDeviceL_command01
sl@0
  2780
		COMMAND		scrndrv		InitScreen
sl@0
  2781
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2782
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0070-0001-SetAutoUpdate_command04
sl@0
  2783
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2784
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0070-0001-SetOrientation_command06
sl@0
  2785
		COMMAND		scrndrv		ReadLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0070-0001-ReadLine_command07
sl@0
  2786
		COMMAND		scrndrv		~
sl@0
  2787
	END_TEST_BLOCK
sl@0
  2788
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0070
sl@0
  2789
sl@0
  2790
sl@0
  2791
sl@0
  2792
sl@0
  2793
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0071
sl@0
  2794
sl@0
  2795
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0071
sl@0
  2796
//!@SYMAPI
sl@0
  2797
//!                CFbsDrawDevice::ReadLine(TInt aX, TInt aY, TInt aLength, TAny {ptr}aBuffer, TDisplayMode aDispMode)
sl@0
  2798
//!@SYMAuthor			ddamian
sl@0
  2799
//!@SYMCreationDate		5/2/2008 
sl@0
  2800
//!@SYMTestCaseDesc		Verify ReadLine with display mode EColor16MA
sl@0
  2801
//!@SYMTestActions
sl@0
  2802
//!                1. Create Display (displayMode = EColor16MA)
sl@0
  2803
//!                2. Initialize Screen
sl@0
  2804
//!                3. Set Display Mode
sl@0
  2805
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2806
//!                5. Get available Orientations
sl@0
  2807
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2808
//!                7. Call ReadLine (backColor = {COLOR,RgbBlack})
sl@0
  2809
//!                8.- Destroy screen instance
sl@0
  2810
//!@SYMTestStatus		Verified
sl@0
  2811
//!@SYMTestPriority		Normal
sl@0
  2812
//!@SYMTestExpectedResults
sl@0
  2813
//!                Display mode is set to EColor16MA without any Error .if the Display mode is not supported module should leave with proper error. A Line of given length is read in to the buffer.
sl@0
  2814
//!@SYMTestType			CIT
sl@0
  2815
sl@0
  2816
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2817
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2818
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0071-0001-NewScreenDeviceL_command01
sl@0
  2819
		COMMAND		scrndrv		InitScreen
sl@0
  2820
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2821
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0071-0001-SetAutoUpdate_command04
sl@0
  2822
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2823
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0071-0001-SetOrientation_command06
sl@0
  2824
		COMMAND		scrndrv		ReadLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0071-0001-ReadLine_command07
sl@0
  2825
		COMMAND		scrndrv		~
sl@0
  2826
	END_TEST_BLOCK
sl@0
  2827
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0071
sl@0
  2828
sl@0
  2829
sl@0
  2830
sl@0
  2831
sl@0
  2832
START_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0072
sl@0
  2833
sl@0
  2834
//!@SYMTestCaseID		GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0072
sl@0
  2835
//!@SYMAPI
sl@0
  2836
//!                CFbsDrawDevice::ReadLine(TInt aX, TInt aY, TInt aLength, TAny {ptr}aBuffer, TDisplayMode aDispMode)
sl@0
  2837
//!@SYMAuthor			ddamian
sl@0
  2838
//!@SYMCreationDate		5/2/2008 
sl@0
  2839
//!@SYMTestCaseDesc		Verify ReadLine with display mode EColor16MU
sl@0
  2840
//!@SYMTestActions
sl@0
  2841
//!                1. Create Display (displayMode = EColor16MU)
sl@0
  2842
//!                2. Initialize Screen
sl@0
  2843
//!                3. Set Display Mode
sl@0
  2844
//!                4. Set AutoUpdate (autoUpdate = TRUE)
sl@0
  2845
//!                5. Get available Orientations
sl@0
  2846
//!                6. SetOrientation (orientationMode = EOrientationNormal)
sl@0
  2847
//!                7. Call ReadLine (backColor = {COLOR,RgbBlack})
sl@0
  2848
//!                8.- Destroy screen instance
sl@0
  2849
//!@SYMTestStatus		Verified
sl@0
  2850
//!@SYMTestPriority		Normal
sl@0
  2851
//!@SYMTestExpectedResults
sl@0
  2852
//!                Display mode is set to EColor16MU without any Error .if the Display mode is not supported module should leave with proper error. A Line of given length is read in to the buffer.
sl@0
  2853
//!@SYMTestType			CIT
sl@0
  2854
sl@0
  2855
	START_TEST_BLOCK	100	t_screendriver	\graphics\graphics-screendriver-cfbsdrawdevice-automated.ini
sl@0
  2856
		CREATE_OBJECT	CFbsDrawDevice		scrndrv
sl@0
  2857
		COMMAND		scrndrv		NewScreenDeviceL			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0072-0001-NewScreenDeviceL_command01
sl@0
  2858
		COMMAND		scrndrv		InitScreen
sl@0
  2859
		COMMAND		scrndrv		SetDisplayMode
sl@0
  2860
		COMMAND		scrndrv		SetAutoUpdate			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0072-0001-SetAutoUpdate_command04
sl@0
  2861
		COMMAND		scrndrv		OrientationsAvailable
sl@0
  2862
		COMMAND		scrndrv		SetOrientation			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0072-0001-SetOrientation_command06
sl@0
  2863
		COMMAND		scrndrv		ReadLine			GRAPHICS-SCREENDRIVER-CFbsDrawDevice-0072-0001-ReadLine_command07
sl@0
  2864
		COMMAND		scrndrv		~
sl@0
  2865
	END_TEST_BLOCK
sl@0
  2866
END_TESTCASE GRAPHICS-SCREENDRIVER-CFBSDRAWDEVICE-AUTOMATED-0072
sl@0
  2867
sl@0
  2868
DELAY 10000