classicui_pub/queries_api/tsrc/inc/testsdkqueries.h
changeset 0 2f259fa3e83a
child 14 3320e4e6e8bb
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 /*
       
     2 * Copyright (c) 2002 - 2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Test queries_api
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef C_TESTSDKQUERIES_H
       
    21 #define C_TESTSDKQUERIES_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <stiflogger.h>
       
    25 #include <testscripterinternal.h>
       
    26 #include <stiftestmodule.h>
       
    27 #include <testclassassert.h>
       
    28 
       
    29 // MACROS
       
    30 #define TEST_CLASS_VERSION_MAJOR 0
       
    31 #define TEST_CLASS_VERSION_MINOR 0
       
    32 #define TEST_CLASS_VERSION_BUILD 0
       
    33 
       
    34 // Logging path
       
    35 _LIT( KtestsdkqueriesLogPath, "\\logs\\testframework\\testsdkqueries\\" ); 
       
    36 // Log file
       
    37 _LIT( KtestsdkqueriesLogFile, "testsdkqueries.txt" ); 
       
    38 _LIT( KtestsdkqueriesLogFileWithTitle, "testsdkqueries_[%S].txt" );
       
    39 
       
    40 class CAknDialog;
       
    41 class CTestSDKQueriesDialg;
       
    42 
       
    43 class CTestSDKQueriesView;
       
    44 class CTestSDKQueriesContainer;
       
    45 /**
       
    46 *  Ctestsdkqueries test class for STIF Test Framework TestScripter.
       
    47 *  @since S60 5.0
       
    48 */
       
    49 NONSHARABLE_CLASS(CTestSDKQueries) : public CScriptBase
       
    50     {
       
    51 public:  // Constructors and destructor
       
    52 
       
    53     /**
       
    54     * Two-phased constructor.
       
    55     */
       
    56     static CTestSDKQueries* NewL( CTestModuleIf& aTestModuleIf );
       
    57 
       
    58     /**
       
    59     * Destructor.
       
    60     */
       
    61     virtual ~CTestSDKQueries();
       
    62 
       
    63 public: // Functions from base classes
       
    64 
       
    65     /**
       
    66     * From CScriptBase Runs a script line.
       
    67     * @since S60 5.0
       
    68     * @param aItem Script line containing method name and parameters
       
    69     * @return Symbian OS error code
       
    70     */
       
    71     virtual TInt RunMethodL( CStifItemParser& aItem );
       
    72 
       
    73 private:
       
    74 
       
    75     /**
       
    76     * C++ default constructor.
       
    77     */
       
    78     CTestSDKQueries( CTestModuleIf& aTestModuleIf );
       
    79 
       
    80     /**
       
    81     * By default Symbian 2nd phase constructor is private.
       
    82     */
       
    83     void ConstructL();
       
    84 
       
    85     /**
       
    86     * Frees all resources allocated from test methods.
       
    87     * @since S60 5.0
       
    88     */
       
    89     void Delete();
       
    90     
       
    91 private://akndialog.h
       
    92 	
       
    93     /**
       
    94     * TestDlgCAknDialog test method for test the CAknDialog.
       
    95     * @since S60 5.0
       
    96     * @param aItem Script line containing parameters.
       
    97     * @return Symbian OS error code.
       
    98     */
       
    99     virtual TInt TestDlgCAknDialogL( CStifItemParser& aItem );
       
   100 	
       
   101     /**
       
   102     * TestDlgConstructL test method for test the ConstructL.
       
   103     * @since S60 5.0
       
   104     * @param aItem Script line containing parameters.
       
   105     * @return Symbian OS error code.
       
   106     */
       
   107     virtual TInt TestDlgConstructL( CStifItemParser& aItem );
       
   108 	
       
   109     /**
       
   110     * TestDlgDelete test method for test the destructor method.
       
   111     * @since S60 5.0
       
   112     * @param aItem Script line containing parameters.
       
   113     * @return Symbian OS error code.
       
   114     */
       
   115     virtual TInt TestDlgDelete( CStifItemParser& aItem );
       
   116 	
       
   117     /**
       
   118     * TestDlgExecuteLD test method for test the ExecuteLD.
       
   119     * @since S60 5.0
       
   120     * @param aItem Script line containing parameters.
       
   121     * @return Symbian OS error code.
       
   122     */
       
   123     virtual TInt TestDlgExecuteLD( CStifItemParser& aItem );
       
   124 	
       
   125     /**
       
   126     * TestDlgPrepareLC test method for test the PrepareLC.
       
   127     * @since S60 5.0
       
   128     * @param aItem Script line containing parameters.
       
   129     * @return Symbian OS error code.
       
   130     */
       
   131     virtual TInt TestDlgPrepareLC( CStifItemParser& aItem );
       
   132 	
       
   133     /**
       
   134     * TestDlgRunLD test method for test the RunLD.
       
   135     * @since S60 5.0
       
   136     * @param aItem Script line containing parameters.
       
   137     * @return Symbian OS error code.
       
   138     */
       
   139     virtual TInt TestDlgRunLD( CStifItemParser& aItem );
       
   140 	
       
   141     /**
       
   142     * TestDlgSetEmphasis test method for test the SetEmphasis.
       
   143     * @since S60 5.0
       
   144     * @param aItem Script line containing parameters.
       
   145     * @return Symbian OS error code.
       
   146     */
       
   147     virtual TInt TestDlgSetEmphasisL( CStifItemParser& aItem );
       
   148 	
       
   149     /**
       
   150     * TestDlgDynInitMenuPaneL test method for test the DynInitMenuPaneL.
       
   151     * @since S60 5.0
       
   152     * @param aItem Script line containing parameters.
       
   153     * @return Symbian OS error code.
       
   154     */
       
   155     virtual TInt TestDlgDynInitMenuPaneL( CStifItemParser& aItem );
       
   156 	
       
   157     /**
       
   158     * TestDlgProcessCommandL test method for test the ProcessCommandL.
       
   159     * @since S60 5.0
       
   160     * @param aItem Script line containing parameters.
       
   161     * @return Symbian OS error code.
       
   162     */
       
   163     virtual TInt TestDlgProcessCommandL( CStifItemParser& aItem );
       
   164 	
       
   165     /**
       
   166     * TestDlgOfferKeyEventL test method for test the OfferKeyEventL.
       
   167     * @since S60 5.0
       
   168     * @param aItem Script line containing parameters.
       
   169     * @return Symbian OS error code.
       
   170     */
       
   171     virtual TInt TestDlgOfferKeyEventL( CStifItemParser& aItem );
       
   172 	
       
   173     /**
       
   174     * TestDlgFocusChanged test method for test the FocusChanged.
       
   175     * @since S60 5.0
       
   176     * @param aItem Script line containing parameters.
       
   177     * @return Symbian OS error code.
       
   178     */
       
   179     virtual TInt TestDlgFocusChangedL( CStifItemParser& aItem );
       
   180 	
       
   181     /**
       
   182     * TestDlgHandlePointerEventL test method for test the HandlePointerEventL.
       
   183     * @since S60 5.0
       
   184     * @param aItem Script line containing parameters.
       
   185     * @return Symbian OS error code.
       
   186     */
       
   187     virtual TInt TestDlgHandlePointerEventL( CStifItemParser& aItem );
       
   188 	
       
   189     /**
       
   190     * TestDlgOkToExitL test method for test the OkToExitL.
       
   191     * @since S60 5.0
       
   192     * @param aItem Script line containing parameters.
       
   193     * @return Symbian OS error code.
       
   194     */
       
   195     virtual TInt TestDlgOkToExitL( CStifItemParser& aItem );
       
   196 	
       
   197     /**
       
   198     * TestDlgDisplayMenuL test method for test the DisplayMenuL.
       
   199     * @since S60 5.0
       
   200     * @param aItem Script line containing parameters.
       
   201     * @return Symbian OS error code.
       
   202     */
       
   203     virtual TInt TestDlgDisplayMenuL( CStifItemParser& aItem );
       
   204 	
       
   205     /**
       
   206     * TestDlgHideMenu test method for test the HideMenu.
       
   207     * @since S60 5.0
       
   208     * @param aItem Script line containing parameters.
       
   209     * @return Symbian OS error code.
       
   210     */
       
   211     virtual TInt TestDlgHideMenuL( CStifItemParser& aItem );
       
   212 	
       
   213     /**
       
   214     * TestDlgMenuShowing test method for test the MenuShowing.
       
   215     * @since S60 5.0
       
   216     * @param aItem Script line containing parameters.
       
   217     * @return Symbian OS error code.
       
   218     */
       
   219     virtual TInt TestDlgMenuShowingL( CStifItemParser& aItem );
       
   220 	
       
   221     /**
       
   222     * TestDlgSizeChanged test method for test the SizeChanged.
       
   223     * @since S60 5.0
       
   224     * @param aItem Script line containing parameters.
       
   225     * @return Symbian OS error code.
       
   226     */
       
   227     virtual TInt TestDlgSizeChangedL( CStifItemParser& aItem );
       
   228 	
       
   229     /**
       
   230     * TestDlgDraw test method for test the Draw.
       
   231     * @since S60 5.0
       
   232     * @param aItem Script line containing parameters.
       
   233     * @return Symbian OS error code.
       
   234     */
       
   235     virtual TInt TestDlgDrawL( CStifItemParser& aItem );
       
   236 	
       
   237     /**
       
   238     * TestDlgMopSupplyObject test method for test the MopSupplyObject.
       
   239     * @since S60 5.0
       
   240     * @param aItem Script line containing parameters.
       
   241     * @return Symbian OS error code.
       
   242     */
       
   243     virtual TInt TestDlgMopSupplyObjectL( CStifItemParser& aItem );
       
   244     
       
   245 private://aknlistquerycontrol.h
       
   246     /**
       
   247     * TestLqcConstructorL test method for test the Constructor.
       
   248     * @since S60 5.0
       
   249     * @param aItem Script line containing parameters.
       
   250     * @return Symbian OS error code.
       
   251     */
       
   252     virtual TInt TestLqcConstructorL( CStifItemParser& aItem );
       
   253     
       
   254     /**
       
   255     * TestLqcConstructFromResourceL test method for test the ConstructFromResourceL.
       
   256     * @since S60 5.0
       
   257     * @param aItem Script line containing parameters.
       
   258     * @return Symbian OS error code.
       
   259     */
       
   260     virtual TInt TestLqcConstructFromResourceL( CStifItemParser& aItem );
       
   261 
       
   262     /**
       
   263     * TestLqcDestructorL test method for test the Destructor.
       
   264     * @since S60 5.0
       
   265     * @param aItem Script line containing parameters.
       
   266     * @return Symbian OS error code.
       
   267     */
       
   268     virtual TInt TestLqcDestructorL( CStifItemParser& aItem );
       
   269 
       
   270     /**
       
   271     * TestDlgMopSupplyObject test method for test the MopSupplyObject.
       
   272     * @since S60 5.0
       
   273     * @param aItem Script line containing parameters.
       
   274     * @return Symbian OS error code.
       
   275     */
       
   276     virtual TInt TestLqcMinimumSizeL( CStifItemParser& aItem );
       
   277 
       
   278     /**
       
   279     * TestDlgMopSupplyObject test method for test the MopSupplyObject.
       
   280     * @since S60 5.0
       
   281     * @param aItem Script line containing parameters.
       
   282     * @return Symbian OS error code.
       
   283     */
       
   284     virtual TInt TestLqcCountComponentControlsL( CStifItemParser& aItem );
       
   285 
       
   286     /**
       
   287     * TestDlgMopSupplyObject test method for test the MopSupplyObject.
       
   288     * @since S60 5.0
       
   289     * @param aItem Script line containing parameters.
       
   290     * @return Symbian OS error code.
       
   291     */
       
   292     virtual TInt TestLqcComponentControlL( CStifItemParser& aItem );
       
   293 
       
   294     /**
       
   295     * TestDlgMopSupplyObject test method for test the MopSupplyObject.
       
   296     * @since S60 5.0
       
   297     * @param aItem Script line containing parameters.
       
   298     * @return Symbian OS error code.
       
   299     */
       
   300     virtual TInt TestLqcOfferKeyEventL( CStifItemParser& aItem );
       
   301 
       
   302     /**
       
   303     * TestLqcDrawL test method for test the Draw.
       
   304     * @since S60 5.0
       
   305     * @param aItem Script line containing parameters.
       
   306     * @return Symbian OS error code.
       
   307     */
       
   308     virtual TInt TestLqcDrawL( CStifItemParser& aItem );
       
   309 
       
   310     /**
       
   311     * TestDlgMopSupplyObject test method for test the MopSupplyObject.
       
   312     * @since S60 5.0
       
   313     * @param aItem Script line containing parameters.
       
   314     * @return Symbian OS error code.
       
   315     */
       
   316     virtual TInt TestLqcSetLayoutL( CStifItemParser& aItem );
       
   317 
       
   318     /**
       
   319     * TestDlgMopSupplyObject test method for test the MopSupplyObject.
       
   320     * @since S60 5.0
       
   321     * @param aItem Script line containing parameters.
       
   322     * @return Symbian OS error code.
       
   323     */
       
   324     virtual TInt TestLqcFocusChangedL( CStifItemParser& aItem );
       
   325 
       
   326     /**
       
   327     * TestDlgMopSupplyObject test method for test the MopSupplyObject.
       
   328     * @since S60 5.0
       
   329     * @param aItem Script line containing parameters.
       
   330     * @return Symbian OS error code.
       
   331     */
       
   332     virtual TInt TestLqcListboxL( CStifItemParser& aItem );
       
   333 
       
   334     /**
       
   335     * TestDlgMopSupplyObject test method for test the MopSupplyObject.
       
   336     * @since S60 5.0
       
   337     * @param aItem Script line containing parameters.
       
   338     * @return Symbian OS error code.
       
   339     */
       
   340     virtual TInt TestLqcHeadingL( CStifItemParser& aItem );
       
   341 
       
   342     /**
       
   343     * TestLqcListtypeL test method for test the Listtype.
       
   344     * @since S60 5.0
       
   345     * @param aItem Script line containing parameters.
       
   346     * @return Symbian OS error code.
       
   347     */
       
   348     virtual TInt TestLqcListtypeL( CStifItemParser& aItem );
       
   349 
       
   350     /**
       
   351     * TestLqcHandlePointerEventL test method for test the HandlePointerEventL.
       
   352     * @since S60 5.0
       
   353     * @param aItem Script line containing parameters.
       
   354     * @return Symbian OS error code.
       
   355     */
       
   356     virtual TInt TestLqcHandlePointerEventL( CStifItemParser& aItem );
       
   357 
       
   358     /**
       
   359     * TestLqclistboxL test method for test the listbox.
       
   360     * @since S60 5.0
       
   361     * @param aItem Script line containing parameters.
       
   362     * @return Symbian OS error code.
       
   363     */
       
   364     virtual TInt TestLqclistboxL( CStifItemParser& aItem );
       
   365     
       
   366 /*
       
   367  * aknlistquerydialog.h
       
   368  **/
       
   369         //CAknListQueryDialog
       
   370     /**
       
   371     * TestLqdlgConstructorL test method for test the Constructor.
       
   372     * @since S60 5.0
       
   373     * @param aItem Script line containing parameters.
       
   374     * @return Symbian OS error code.
       
   375     */
       
   376     virtual TInt TestLqdlgConstructorL( CStifItemParser& aItem );
       
   377     
       
   378     /**
       
   379     * TestLqdlgConstructorLL test method for test the Constructor.
       
   380     * @since S60 5.0
       
   381     * @param aItem Script line containing parameters.
       
   382     * @return Symbian OS error code.
       
   383     */
       
   384     virtual TInt TestLqdlgConstructorLL( CStifItemParser& aItem );
       
   385 
       
   386     /**
       
   387     * TestLqdlgDestructorL test method for test the Destructor.
       
   388     * @since S60 5.0
       
   389     * @param aItem Script line containing parameters.
       
   390     * @return Symbian OS error code.
       
   391     */
       
   392     virtual TInt TestLqdlgDestructorL( CStifItemParser& aItem );
       
   393 
       
   394     /**
       
   395     * TestLqdlgSetSizeAndPositionL test method for test the SetSizeAndPosition.
       
   396     * @since S60 5.0
       
   397     * @param aItem Script line containing parameters.
       
   398     * @return Symbian OS error code.
       
   399     */
       
   400     virtual TInt TestLqdlgSetSizeAndPositionL( CStifItemParser& aItem );
       
   401 
       
   402     /**
       
   403     * TestLqdlgOfferKeyEventL test method for test the OfferKeyEvent.
       
   404     * @since S60 5.0
       
   405     * @param aItem Script line containing parameters.
       
   406     * @return Symbian OS error code.
       
   407     */
       
   408     virtual TInt TestLqdlgOfferKeyEventL( CStifItemParser& aItem );
       
   409 
       
   410     /**
       
   411     * TestLqclistboxL test method for test the listbox.
       
   412     * @since S60 5.0
       
   413     * @param aItem Script line containing parameters.
       
   414     * @return Symbian OS error code.
       
   415     */
       
   416     virtual TInt TestLqdlgHandleListBoxEventL( CStifItemParser& aItem );
       
   417 
       
   418     /**
       
   419     * TestLqclistboxL test method for test the listbox.
       
   420     * @since S60 5.0
       
   421     * @param aItem Script line containing parameters.
       
   422     * @return Symbian OS error code.
       
   423     */
       
   424     virtual TInt TestLqdlgSetItemTextArrayL( CStifItemParser& aItem );
       
   425 
       
   426     /**
       
   427     * TestLqclistboxL test method for test the listbox.
       
   428     * @since S60 5.0
       
   429     * @param aItem Script line containing parameters.
       
   430     * @return Symbian OS error code.
       
   431     */
       
   432     virtual TInt TestLqdlgSetOwnershipTypeL( CStifItemParser& aItem );
       
   433 
       
   434     /**
       
   435     * TestLqclistboxL test method for test the listbox.
       
   436     * @since S60 5.0
       
   437     * @param aItem Script line containing parameters.
       
   438     * @return Symbian OS error code.
       
   439     */
       
   440     virtual TInt TestLqdlgSetIconArrayL( CStifItemParser& aItem );
       
   441 
       
   442     /**
       
   443     * TestLqdlgListBoxL test method for test the ListBox.
       
   444     * @since S60 5.0
       
   445     * @param aItem Script line containing parameters.
       
   446     * @return Symbian OS error code.
       
   447     */
       
   448     virtual TInt TestLqdlgListBoxL( CStifItemParser& aItem );
       
   449 
       
   450     /**
       
   451     * TestLqdlgListControlL test method for test the ListControl.
       
   452     * @since S60 5.0
       
   453     * @param aItem Script line containing parameters.
       
   454     * @return Symbian OS error code.
       
   455     */
       
   456     virtual TInt TestLqdlgListControlL( CStifItemParser& aItem );
       
   457 
       
   458     /**
       
   459     * TestLqdlgMessageBoxL test method for test the MessageBox.
       
   460     * @since S60 5.0
       
   461     * @param aItem Script line containing parameters.
       
   462     * @return Symbian OS error code.
       
   463     */
       
   464     virtual TInt TestLqdlgMessageBoxL( CStifItemParser& aItem );
       
   465 
       
   466     /**
       
   467     * TestLqdlgQueryHeadingL test method for test the QueryHeading.
       
   468     * @since S60 5.0
       
   469     * @param aItem Script line containing parameters.
       
   470     * @return Symbian OS error code.
       
   471     */
       
   472     virtual TInt TestLqdlgQueryHeadingL( CStifItemParser& aItem );
       
   473 
       
   474     /**
       
   475     * TestLqdlgActivateL test method for test the Activate.
       
   476     * @since S60 5.0
       
   477     * @param aItem Script line containing parameters.
       
   478     * @return Symbian OS error code.
       
   479     */
       
   480     virtual TInt TestLqdlgActivateL( CStifItemParser& aItem );
       
   481 
       
   482     /**
       
   483     * TestLqdlgHandlePointerEventL test method for test the HandlePointerEvent.
       
   484     * @since S60 5.0
       
   485     * @param aItem Script line containing parameters.
       
   486     * @return Symbian OS error code.
       
   487     */
       
   488     virtual TInt TestLqdlgHandlePointerEventL( CStifItemParser& aItem );
       
   489     
       
   490     //protected function
       
   491     /**
       
   492     * TestLqdlgPreLayoutDynInitL test method for test the PreLayoutDynInit.
       
   493     * @since S60 5.0
       
   494     * @param aItem Script line containing parameters.
       
   495     * @return Symbian OS error code.
       
   496     */
       
   497     virtual TInt TestLqdlgPreLayoutDynInitL( CStifItemParser& aItem );
       
   498 
       
   499     /**
       
   500     * TestLqdlgPostLayoutDynInitL test method for test the PostLayoutDynInit.
       
   501     * @since S60 5.0
       
   502     * @param aItem Script line containing parameters.
       
   503     * @return Symbian OS error code.
       
   504     */
       
   505     virtual TInt TestLqdlgPostLayoutDynInitL( CStifItemParser& aItem );
       
   506 
       
   507     /**
       
   508     * TestLqdlgOkToExitL test method for test the OkToExit.
       
   509     * @since S60 5.0
       
   510     * @param aItem Script line containing parameters.
       
   511     * @return Symbian OS error code.
       
   512     */
       
   513     virtual TInt TestLqdlgOkToExitL( CStifItemParser& aItem );
       
   514 
       
   515     /**
       
   516     * TestLqdlgBorderStyleL test method for test the BorderStyle.
       
   517     * @since S60 5.0
       
   518     * @param aItem Script line containing parameters.
       
   519     * @return Symbian OS error code.
       
   520     */
       
   521     virtual TInt TestLqdlgBorderStyleL( CStifItemParser& aItem );
       
   522 
       
   523     /**
       
   524     * TestLqdlgCloseStateL test method for test the CloseState.
       
   525     * @since S60 5.0
       
   526     * @param aItem Script line containing parameters.
       
   527     * @return Symbian OS error code.
       
   528     */
       
   529     virtual TInt TestLqdlgCloseStateL( CStifItemParser& aItem );
       
   530 
       
   531     /**
       
   532     * TestLqdlgFindBoxL test method for test the FindBox.
       
   533     * @since S60 5.0
       
   534     * @param aItem Script line containing parameters.
       
   535     * @return Symbian OS error code.
       
   536     */
       
   537     virtual TInt TestLqdlgFindBoxL( CStifItemParser& aItem );
       
   538 
       
   539     /**
       
   540     * TestLqdlgSetToneL test method for test the SetTone.
       
   541     * @since S60 5.0
       
   542     * @param aItem Script line containing parameters.
       
   543     * @return Symbian OS error code.
       
   544     */
       
   545     virtual TInt TestLqdlgSetToneL( CStifItemParser& aItem );
       
   546 
       
   547     /**
       
   548     * TestLqdlgHandleResourceChangeL test method for test the HandleResourceChange.
       
   549     * @since S60 5.0
       
   550     * @param aItem Script line containing parameters.
       
   551     * @return Symbian OS error code.
       
   552     */
       
   553     virtual TInt TestLqdlgHandleResourceChangeL( CStifItemParser& aItem );
       
   554 
       
   555     /**
       
   556     * TestLqdlgPublishDialogL test method for test the PublishDialog.
       
   557     * @since S60 5.0
       
   558     * @param aItem Script line containing parameters.
       
   559     * @return Symbian OS error code.
       
   560     */
       
   561     virtual TInt TestLqdlgPublishDialogL( CStifItemParser& aItem );
       
   562 
       
   563     /**
       
   564     * TestLqdlgSetMediatorObserverL test method for test the SetMediatorObserver.
       
   565     * @since S60 5.0
       
   566     * @param aItem Script line containing parameters.
       
   567     * @return Symbian OS error code.
       
   568     */
       
   569     virtual TInt TestLqdlgSetMediatorObserverL( CStifItemParser& aItem );
       
   570     
       
   571 private://aknmessagequerycontrol.h
       
   572         //CAknMessageQueryControl
       
   573     /**
       
   574     * TestLqdlgSetMediatorObserverL test method for test the SetMediatorObserver.
       
   575     * @since S60 5.0
       
   576     * @param aItem Script line containing parameters.
       
   577     * @return Symbian OS error code.
       
   578     */
       
   579     virtual TInt TestMqcConstructFromResourceL( CStifItemParser& aItem );
       
   580 
       
   581     /**
       
   582     * TestLqdlgSetMediatorObserverL test method for test the SetMediatorObserver.
       
   583     * @since S60 5.0
       
   584     * @param aItem Script line containing parameters.
       
   585     * @return Symbian OS error code.
       
   586     */
       
   587     virtual TInt TestMqcSetMessageTextL( CStifItemParser& aItem );
       
   588 
       
   589     /**
       
   590     * TestLqdlgSetMediatorObserverL test method for test the SetMediatorObserver.
       
   591     * @since S60 5.0
       
   592     * @param aItem Script line containing parameters.
       
   593     * @return Symbian OS error code.
       
   594     */
       
   595     virtual TInt TestMqcLinkHighLightedL( CStifItemParser& aItem );
       
   596 
       
   597     /**
       
   598     * TestLqdlgSetMediatorObserverL test method for test the SetMediatorObserver.
       
   599     * @since S60 5.0
       
   600     * @param aItem Script line containing parameters.
       
   601     * @return Symbian OS error code.
       
   602     */
       
   603     virtual TInt TestMqcDrawL( CStifItemParser& aItem );
       
   604     
       
   605 private://aknmessagequerydialog.h
       
   606         //CAknMessageQueryDialog
       
   607     /**
       
   608     * TestMqdlgNewL test method for test the NewL.
       
   609     * @since S60 5.0
       
   610     * @param aItem Script line containing parameters.
       
   611     * @return Symbian OS error code.
       
   612     */
       
   613     virtual TInt TestMqdlgNewL( CStifItemParser& aItem );
       
   614 
       
   615     /**
       
   616     * TestLqdlgSetMediatorObserverL test method for test the SetMediatorObserver.
       
   617     * @since S60 5.0
       
   618     * @param aItem Script line containing parameters.
       
   619     * @return Symbian OS error code.
       
   620     */
       
   621     virtual TInt TestMqdlgDestructorL( CStifItemParser& aItem );
       
   622 
       
   623     /**
       
   624     * TestLqdlgSetMediatorObserverL test method for test the SetMediatorObserver.
       
   625     * @since S60 5.0
       
   626     * @param aItem Script line containing parameters.
       
   627     * @return Symbian OS error code.
       
   628     */
       
   629     virtual TInt TestMqdlgConstructorOneL( CStifItemParser& aItem );
       
   630 
       
   631     /**
       
   632     * TestLqdlgSetMediatorObserverL test method for test the SetMediatorObserver.
       
   633     * @since S60 5.0
       
   634     * @param aItem Script line containing parameters.
       
   635     * @return Symbian OS error code.
       
   636     */
       
   637     virtual TInt TestMqdlgSetMessageTextOneL( CStifItemParser& aItem );
       
   638 
       
   639     /**
       
   640     * TestLqdlgSetMediatorObserverL test method for test the SetMediatorObserver.
       
   641     * @since S60 5.0
       
   642     * @param aItem Script line containing parameters.
       
   643     * @return Symbian OS error code.
       
   644     */
       
   645     virtual TInt TestMqdlgSetHeaderTextOneL( CStifItemParser& aItem );
       
   646 
       
   647     /**
       
   648     * TestMqdlgSetLinkTextL test method for test the SetLinkText.
       
   649     * @since S60 5.0
       
   650     * @param aItem Script line containing parameters.
       
   651     * @return Symbian OS error code.
       
   652     */
       
   653     virtual TInt TestMqdlgSetLinkTextL( CStifItemParser& aItem );
       
   654 
       
   655     /**
       
   656     * TestMqdlgSetLinkL test method for test the SetLink.
       
   657     * @since S60 5.0
       
   658     * @param aItem Script line containing parameters.
       
   659     * @return Symbian OS error code.
       
   660     */
       
   661     virtual TInt TestMqdlgSetLinkL( CStifItemParser& aItem );
       
   662 
       
   663     /**
       
   664     * TestMqdlgOfferKeyEventL test method for test the OfferKeyEvent.
       
   665     * @since S60 5.0
       
   666     * @param aItem Script line containing parameters.
       
   667     * @return Symbian OS error code.
       
   668     */
       
   669     virtual TInt TestMqdlgOfferKeyEventL( CStifItemParser& aItem );
       
   670 
       
   671     /**
       
   672     * TestMqdlgHandlePointerEventL test method for test the HandlePointerEvent.
       
   673     * @since S60 5.0
       
   674     * @param aItem Script line containing parameters.
       
   675     * @return Symbian OS error code.
       
   676     */
       
   677     virtual TInt TestMqdlgHandlePointerEventL( CStifItemParser& aItem );
       
   678 
       
   679     /**
       
   680     * TestMqdlgPreLayoutDynInitL test method for test the PreLayoutDynInit.
       
   681     * @since S60 5.0
       
   682     * @param aItem Script line containing parameters.
       
   683     * @return Symbian OS error code.
       
   684     */
       
   685     virtual TInt TestMqdlgPreLayoutDynInitL( CStifItemParser& aItem );
       
   686 
       
   687     /**
       
   688     * TestMqdlgSetSizeAndPositionL test method for test the SetSizeAndPosition.
       
   689     * @since S60 5.0
       
   690     * @param aItem Script line containing parameters.
       
   691     * @return Symbian OS error code.
       
   692     */
       
   693     virtual TInt TestMqdlgSetSizeAndPositionL( CStifItemParser& aItem );
       
   694 
       
   695     /**
       
   696     * TestMqdlgPostLayoutDynInitL test method for test the PostLayoutDynInit.
       
   697     * @since S60 5.0
       
   698     * @param aItem Script line containing parameters.
       
   699     * @return Symbian OS error code.
       
   700     */
       
   701     virtual TInt TestMqdlgPostLayoutDynInitL( CStifItemParser& aItem );
       
   702 
       
   703     /**
       
   704     * TestMqdlgProcessCommandL test method for test the ProcessCommand.
       
   705     * @since S60 5.0
       
   706     * @param aItem Script line containing parameters.
       
   707     * @return Symbian OS error code.
       
   708     */
       
   709     virtual TInt TestMqdlgProcessCommandL( CStifItemParser& aItem );
       
   710 
       
   711     /**
       
   712     * TestMqdlgConstructorTwoL test method for test the Constructor.
       
   713     * @since S60 5.0
       
   714     * @param aItem Script line containing parameters.
       
   715     * @return Symbian OS error code.
       
   716     */
       
   717     virtual TInt TestMqdlgConstructorTwoL( CStifItemParser& aItem );
       
   718 
       
   719     /**
       
   720     * TestMqdlgConstructorThreeL test method for test the Constructor.
       
   721     * @since S60 5.0
       
   722     * @param aItem Script line containing parameters.
       
   723     * @return Symbian OS error code.
       
   724     */
       
   725     virtual TInt TestMqdlgConstructorThreeL( CStifItemParser& aItem );
       
   726 
       
   727     /**
       
   728     * TestMqdlgConstructorFourL test method for test the Constructor.
       
   729     * @since S60 5.0
       
   730     * @param aItem Script line containing parameters.
       
   731     * @return Symbian OS error code.
       
   732     */
       
   733     virtual TInt TestMqdlgConstructorFourL( CStifItemParser& aItem );
       
   734 
       
   735     /**
       
   736     * TestMqdlgConstructorFiveL test method for test the Constructor.
       
   737     * @since S60 5.0
       
   738     * @param aItem Script line containing parameters.
       
   739     * @return Symbian OS error code.
       
   740     */
       
   741     virtual TInt TestMqdlgConstructorFiveL( CStifItemParser& aItem );
       
   742 
       
   743     /**
       
   744     * TestMqdlgSetMessageTextTwoL test method for test the SetMessageText.
       
   745     * @since S60 5.0
       
   746     * @param aItem Script line containing parameters.
       
   747     * @return Symbian OS error code.
       
   748     */
       
   749     virtual TInt TestMqdlgSetMessageTextTwoL( CStifItemParser& aItem );
       
   750 
       
   751     /**
       
   752     * TestMqdlgSetMessageTextThreeL test method for test the SetMessageText.
       
   753     * @since S60 5.0
       
   754     * @param aItem Script line containing parameters.
       
   755     * @return Symbian OS error code.
       
   756     */
       
   757     virtual TInt TestMqdlgSetMessageTextThreeL( CStifItemParser& aItem );
       
   758 
       
   759     /**
       
   760     * TestMqdlgSetHeaderTextTwoL test method for test the SetHeaderText.
       
   761     * @since S60 5.0
       
   762     * @param aItem Script line containing parameters.
       
   763     * @return Symbian OS error code.
       
   764     */
       
   765     virtual TInt TestMqdlgSetHeaderTextTwoL( CStifItemParser& aItem );
       
   766 
       
   767     /**
       
   768     * TestMqdlgSetHeaderTextThreeL test method for test the SetHeaderText.
       
   769     * @since S60 5.0
       
   770     * @param aItem Script line containing parameters.
       
   771     * @return Symbian OS error code.
       
   772     */
       
   773     virtual TInt TestMqdlgSetHeaderTextThreeL( CStifItemParser& aItem );
       
   774 
       
   775     /**
       
   776     * TestMqdlgConstructorSixL test method for test the Constructor.
       
   777     * @since S60 5.0
       
   778     * @param aItem Script line containing parameters.
       
   779     * @return Symbian OS error code.
       
   780     */
       
   781     virtual TInt TestMqdlgConstructorSixL( CStifItemParser& aItem );
       
   782     
       
   783 private://AknMultilineQueryControl.h
       
   784         //CAknMultilineQueryControl
       
   785     /**
       
   786     * TestMlqcConstructorL test method for test the Constructor.
       
   787     * @since S60 5.0
       
   788     * @param aItem Script line containing parameters.
       
   789     * @return Symbian OS error code.
       
   790     */
       
   791     virtual TInt TestMlqcConstructorL( CStifItemParser& aItem );
       
   792 
       
   793     /**
       
   794     * TestMlqcDestructorL test method for test the Destructor.
       
   795     * @since S60 5.0
       
   796     * @param aItem Script line containing parameters.
       
   797     * @return Symbian OS error code.
       
   798     */
       
   799     virtual TInt TestMlqcDestructorL( CStifItemParser& aItem );
       
   800 
       
   801     /**
       
   802     * TestMlqcSetNbrOfPromptLinesL test method for test the SetNbrOfPromptLines.
       
   803     * @since S60 5.0
       
   804     * @param aItem Script line containing parameters.
       
   805     * @return Symbian OS error code.
       
   806     */
       
   807     virtual TInt TestMlqcSetNbrOfPromptLinesL( CStifItemParser& aItem );
       
   808 
       
   809     /**
       
   810     * TestMlqcIsFirstL test method for test the IsFirst.
       
   811     * @since S60 5.0
       
   812     * @param aItem Script line containing parameters.
       
   813     * @return Symbian OS error code.
       
   814     */
       
   815     virtual TInt TestMlqcIsFirstL( CStifItemParser& aItem );
       
   816 
       
   817     /**
       
   818     * TestMlqcIsSecondL test method for test the IsSecond.
       
   819     * @since S60 5.0
       
   820     * @param aItem Script line containing parameters.
       
   821     * @return Symbian OS error code.
       
   822     */
       
   823     virtual TInt TestMlqcIsSecondL( CStifItemParser& aItem );
       
   824 
       
   825     /**
       
   826     * TestMlqcControlByLayoutOrNullL test method for test the ControlByLayoutOrNull.
       
   827     * @since S60 5.0
       
   828     * @param aItem Script line containing parameters.
       
   829     * @return Symbian OS error code.
       
   830     */
       
   831     virtual TInt TestMlqcControlByLayoutOrNullL( CStifItemParser& aItem );
       
   832 
       
   833     /**
       
   834     * TestMlqcMinimumSizeL test method for test the MinimumSize.
       
   835     * @since S60 5.0
       
   836     * @param aItem Script line containing parameters.
       
   837     * @return Symbian OS error code.
       
   838     */
       
   839     virtual TInt TestMlqcMinimumSizeL( CStifItemParser& aItem );
       
   840 
       
   841     /**
       
   842     * TestMlqcHandlePointerEventL test method for test the HandlePointerEvent.
       
   843     * @since S60 5.0
       
   844     * @param aItem Script line containing parameters.
       
   845     * @return Symbian OS error code.
       
   846     */
       
   847     virtual TInt TestMlqcHandlePointerEventL( CStifItemParser& aItem );
       
   848 
       
   849     /**
       
   850     * TestMlqcHandleResourceChangeL test method for test the HandleResourceChange.
       
   851     * @since S60 5.0
       
   852     * @param aItem Script line containing parameters.
       
   853     * @return Symbian OS error code.
       
   854     */
       
   855     virtual TInt TestMlqcHandleResourceChangeL( CStifItemParser& aItem );
       
   856 
       
   857     //CAknExtMultilineQueryControl
       
   858     /**
       
   859     * TestExtMlqcConstructorL test method for test the Constructor.
       
   860     * @since S60 5.0
       
   861     * @param aItem Script line containing parameters.
       
   862     * @return Symbian OS error code.
       
   863     */
       
   864     virtual TInt TestExtMlqcConstructorL( CStifItemParser& aItem );
       
   865 
       
   866     /**
       
   867     * TestExtMlqcDestructorL test method for test the Destructor.
       
   868     * @since S60 5.0
       
   869     * @param aItem Script line containing parameters.
       
   870     * @return Symbian OS error code.
       
   871     */
       
   872     virtual TInt TestExtMlqcDestructorL( CStifItemParser& aItem );
       
   873 
       
   874     /**
       
   875     * TestExtMlqcSetNbrOfPromptLinesL test method for test the SetNbrOfPromptLines.
       
   876     * @since S60 5.0
       
   877     * @param aItem Script line containing parameters.
       
   878     * @return Symbian OS error code.
       
   879     */
       
   880     virtual TInt TestExtMlqcSetNbrOfPromptLinesL( CStifItemParser& aItem );
       
   881 
       
   882     /**
       
   883     * TestExtMlqcIsFirstL test method for test the IsFirst.
       
   884     * @since S60 5.0
       
   885     * @param aItem Script line containing parameters.
       
   886     * @return Symbian OS error code.
       
   887     */
       
   888     virtual TInt TestExtMlqcIsFirstL( CStifItemParser& aItem );
       
   889 
       
   890     /**
       
   891     * TestExtMlqcIsSecondL test method for test the IsSecond.
       
   892     * @since S60 5.0
       
   893     * @param aItem Script line containing parameters.
       
   894     * @return Symbian OS error code.
       
   895     */
       
   896     virtual TInt TestExtMlqcIsSecondL( CStifItemParser& aItem );
       
   897 
       
   898     /**
       
   899     * TestExtMlqcControlByLayoutOrNullL test method for test the ControlByLayoutOrNull.
       
   900     * @since S60 5.0
       
   901     * @param aItem Script line containing parameters.
       
   902     * @return Symbian OS error code.
       
   903     */
       
   904     virtual TInt TestExtMlqcControlByLayoutOrNullL( CStifItemParser& aItem );
       
   905 
       
   906     /**
       
   907     * TestExtMlqcMinimumSizeL test method for test the MinimumSize.
       
   908     * @since S60 5.0
       
   909     * @param aItem Script line containing parameters.
       
   910     * @return Symbian OS error code.
       
   911     */
       
   912     virtual TInt TestExtMlqcMinimumSizeL( CStifItemParser& aItem );
       
   913 
       
   914     /**
       
   915     * TestExtMlqcHandlePointerEventL test method for test the HandlePointerEvent.
       
   916     * @since S60 5.0
       
   917     * @param aItem Script line containing parameters.
       
   918     * @return Symbian OS error code.
       
   919     */
       
   920     virtual TInt TestExtMlqcHandlePointerEventL( CStifItemParser& aItem );
       
   921 
       
   922     /**
       
   923     * TestExtMlqcHandleResourceChangeL test method for test the HandleResourceChange.
       
   924     * @since S60 5.0
       
   925     * @param aItem Script line containing parameters.
       
   926     * @return Symbian OS error code.
       
   927     */
       
   928     virtual TInt TestExtMlqcHandleResourceChangeL( CStifItemParser& aItem );
       
   929     
       
   930 private://AknQueryControl.h
       
   931         //CAknQueryControl
       
   932     /**
       
   933     * TestQcConstructorL test method for test the Constructor.
       
   934     * @since S60 5.0
       
   935     * @param aItem Script line containing parameters.
       
   936     * @return Symbian OS error code.
       
   937     */
       
   938     virtual TInt TestQcConstructorL( CStifItemParser& aItem );
       
   939 
       
   940     /**
       
   941     * TestQcDestructorL test method for test the Destructor.
       
   942     * @since S60 5.0
       
   943     * @param aItem Script line containing parameters.
       
   944     * @return Symbian OS error code.
       
   945     */
       
   946     virtual TInt TestQcDestructorL( CStifItemParser& aItem );
       
   947 
       
   948     /**
       
   949     * TestExtMlqcHandleResourceChangeL test method for test the HandleResourceChange.
       
   950     * @since S60 5.0
       
   951     * @param aItem Script line containing parameters.
       
   952     * @return Symbian OS error code.
       
   953     */
       
   954     virtual TInt TestQcConstructFromResourceL( CStifItemParser& aItem );
       
   955 
       
   956     /**
       
   957     * TestExtMlqcHandleResourceChangeL test method for test the HandleResourceChange.
       
   958     * @since S60 5.0
       
   959     * @param aItem Script line containing parameters.
       
   960     * @return Symbian OS error code.
       
   961     */
       
   962     virtual TInt TestQcSetQueryControlObserverL( CStifItemParser& aItem );
       
   963 
       
   964     /**
       
   965     * TestExtMlqcHandleResourceChangeL test method for test the HandleResourceChange.
       
   966     * @since S60 5.0
       
   967     * @param aItem Script line containing parameters.
       
   968     * @return Symbian OS error code.
       
   969     */
       
   970     virtual TInt TestQcReadPromptL( CStifItemParser& aItem );
       
   971 
       
   972     /**
       
   973     * TestExtMlqcHandleResourceChangeL test method for test the HandleResourceChange.
       
   974     * @since S60 5.0
       
   975     * @param aItem Script line containing parameters.
       
   976     * @return Symbian OS error code.
       
   977     */
       
   978     virtual TInt TestQcSetPromptL( CStifItemParser& aItem );
       
   979 
       
   980     /**
       
   981     * TestQcGetTextL test method for test the GetTextL.
       
   982     * @since S60 5.0
       
   983     * @param aItem Script line containing parameters.
       
   984     * @return Symbian OS error code.
       
   985     */
       
   986     virtual TInt TestQcGetTextL( CStifItemParser& aItem );
       
   987 
       
   988     /**
       
   989     * TestQcGetTimeL test method for test the GetTime.
       
   990     * @since S60 5.0
       
   991     * @param aItem Script line containing parameters.
       
   992     * @return Symbian OS error code.
       
   993     */
       
   994     virtual TInt TestQcGetTimeL( CStifItemParser& aItem );
       
   995 
       
   996     /**
       
   997     * TestQcGetNumberL test method for test the GetNumber.
       
   998     * @since S60 5.0
       
   999     * @param aItem Script line containing parameters.
       
  1000     * @return Symbian OS error code.
       
  1001     */
       
  1002     virtual TInt TestQcGetNumberL( CStifItemParser& aItem );
       
  1003 
       
  1004     /**
       
  1005     * TestQcGetFloatingPointNumberL test method for test the GetFloatingPointNumber.
       
  1006     * @since S60 5.0
       
  1007     * @param aItem Script line containing parameters.
       
  1008     * @return Symbian OS error code.
       
  1009     */
       
  1010     virtual TInt TestQcGetFloatingPointNumberL( CStifItemParser& aItem );
       
  1011 
       
  1012     /**
       
  1013     * TestQcGetDurationL test method for test the GetDuration.
       
  1014     * @since S60 5.0
       
  1015     * @param aItem Script line containing parameters.
       
  1016     * @return Symbian OS error code.
       
  1017     */
       
  1018     virtual TInt TestQcGetDurationL( CStifItemParser& aItem );
       
  1019 
       
  1020     /**
       
  1021     * TestQcGetLocationL test method for test the GetLocation.
       
  1022     * @since S60 5.0
       
  1023     * @param aItem Script line containing parameters.
       
  1024     * @return Symbian OS error code.
       
  1025     */
       
  1026     virtual TInt TestQcGetLocationL( CStifItemParser& aItem );
       
  1027 
       
  1028     /**
       
  1029     * TestQcSetTextL test method for test the SetText.
       
  1030     * @since S60 5.0
       
  1031     * @param aItem Script line containing parameters.
       
  1032     * @return Symbian OS error code.
       
  1033     */
       
  1034     virtual TInt TestQcSetTextL( CStifItemParser& aItem );
       
  1035 
       
  1036     /**
       
  1037     * TestQcSetTimeL test method for test the SetTime.
       
  1038     * @since S60 5.0
       
  1039     * @param aItem Script line containing parameters.
       
  1040     * @return Symbian OS error code.
       
  1041     */
       
  1042     virtual TInt TestQcSetTimeL( CStifItemParser& aItem );
       
  1043 
       
  1044     /**
       
  1045     * TestQcSetDurationL test method for test the SetDuration.
       
  1046     * @since S60 5.0
       
  1047     * @param aItem Script line containing parameters.
       
  1048     * @return Symbian OS error code.
       
  1049     */
       
  1050     virtual TInt TestQcSetDurationL( CStifItemParser& aItem );
       
  1051 
       
  1052     /**
       
  1053     * TestQcSetNumberL test method for test the SetNumber.
       
  1054     * @since S60 5.0
       
  1055     * @param aItem Script line containing parameters.
       
  1056     * @return Symbian OS error code.
       
  1057     */
       
  1058     virtual TInt TestQcSetNumberL( CStifItemParser& aItem );
       
  1059 
       
  1060     /**
       
  1061     * TestQcSetFloatingPointNumberL test method for test the SetFloatingPointNumber.
       
  1062     * @since S60 5.0
       
  1063     * @param aItem Script line containing parameters.
       
  1064     * @return Symbian OS error code.
       
  1065     */
       
  1066     virtual TInt TestQcSetFloatingPointNumberL( CStifItemParser& aItem );
       
  1067 
       
  1068     /**
       
  1069     * TestQcSetLocationL test method for test the SetLocation.
       
  1070     * @since S60 5.0
       
  1071     * @param aItem Script line containing parameters.
       
  1072     * @return Symbian OS error code.
       
  1073     */
       
  1074     virtual TInt TestQcSetLocationL( CStifItemParser& aItem );
       
  1075 
       
  1076     /**
       
  1077     * TestQcSetTextEntryLengthL test method for test the SetTextEntryLength.
       
  1078     * @since S60 5.0
       
  1079     * @param aItem Script line containing parameters.
       
  1080     * @return Symbian OS error code.
       
  1081     */
       
  1082     virtual TInt TestQcSetTextEntryLengthL( CStifItemParser& aItem );
       
  1083 
       
  1084     /**
       
  1085     * TestQcGetTextEntryLengthL test method for test the GetTextEntryLength.
       
  1086     * @since S60 5.0
       
  1087     * @param aItem Script line containing parameters.
       
  1088     * @return Symbian OS error code.
       
  1089     */
       
  1090     virtual TInt TestQcGetTextEntryLengthL( CStifItemParser& aItem );
       
  1091 
       
  1092     /**
       
  1093     * TestQcSetMinimumAndMaximumOneL test method for test the SetMinimumAndMaximum.
       
  1094     * @since S60 5.0
       
  1095     * @param aItem Script line containing parameters.
       
  1096     * @return Symbian OS error code.
       
  1097     */
       
  1098     virtual TInt TestQcSetMinimumAndMaximumOneL( CStifItemParser& aItem );
       
  1099 
       
  1100     /**
       
  1101     * TestQcSetMinimumAndMaximumTwoL test method for test the SetMinimumAndMaximum.
       
  1102     * @since S60 5.0
       
  1103     * @param aItem Script line containing parameters.
       
  1104     * @return Symbian OS error code.
       
  1105     */
       
  1106     virtual TInt TestQcSetMinimumAndMaximumTwoL( CStifItemParser& aItem );
       
  1107 
       
  1108     /**
       
  1109     * TestQcSetMinimumAndMaximumThreeL test method for test the SetMinimumAndMaximum.
       
  1110     * @since S60 5.0
       
  1111     * @param aItem Script line containing parameters.
       
  1112     * @return Symbian OS error code.
       
  1113     */
       
  1114     virtual TInt TestQcSetMinimumAndMaximumThreeL( CStifItemParser& aItem );
       
  1115 
       
  1116     /**
       
  1117     * TestQcCheckNumberL test method for test the CheckNumber.
       
  1118     * @since S60 5.0
       
  1119     * @param aItem Script line containing parameters.
       
  1120     * @return Symbian OS error code.
       
  1121     */
       
  1122     virtual TInt TestQcCheckNumberL( CStifItemParser& aItem );
       
  1123 
       
  1124     /**
       
  1125     * TestQcSetNumberOfEditorLinesL test method for test the SetNumberOfEditorLines.
       
  1126     * @since S60 5.0
       
  1127     * @param aItem Script line containing parameters.
       
  1128     * @return Symbian OS error code.
       
  1129     */
       
  1130     virtual TInt TestQcSetNumberOfEditorLinesL( CStifItemParser& aItem );
       
  1131 
       
  1132     /**
       
  1133     * TestQcSetMinimumAndMaximumL test method for test the SetMinimumAndMaximum.
       
  1134     * @since S60 5.0
       
  1135     * @param aItem Script line containing parameters.
       
  1136     * @return Symbian OS error code.
       
  1137     */
       
  1138     virtual TInt TestQcSetMinimumAndMaximumL( CStifItemParser& aItem );
       
  1139 
       
  1140     /**
       
  1141     * TestQcGetTextLengthL test method for test the GetTextLength.
       
  1142     * @since S60 5.0
       
  1143     * @param aItem Script line containing parameters.
       
  1144     * @return Symbian OS error code.
       
  1145     */
       
  1146     virtual TInt TestQcGetTextLengthL( CStifItemParser& aItem );
       
  1147 
       
  1148     /**
       
  1149     * TestQcNbrOfEditorLinesL test method for test the NbrOfEditorLines.
       
  1150     * @since S60 5.0
       
  1151     * @param aItem Script line containing parameters.
       
  1152     * @return Symbian OS error code.
       
  1153     */
       
  1154     virtual TInt TestQcNbrOfEditorLinesL( CStifItemParser& aItem );
       
  1155 
       
  1156     /**
       
  1157     * TestQcNbrOfPromptLinesL test method for test the NbrOfPromptLines.
       
  1158     * @since S60 5.0
       
  1159     * @param aItem Script line containing parameters.
       
  1160     * @return Symbian OS error code.
       
  1161     */
       
  1162     virtual TInt TestQcNbrOfPromptLinesL( CStifItemParser& aItem );
       
  1163 
       
  1164     /**
       
  1165     * TestQcControlByLayoutOrNullL test method for test the ControlByLayoutOrNull.
       
  1166     * @since S60 5.0
       
  1167     * @param aItem Script line containing parameters.
       
  1168     * @return Symbian OS error code.
       
  1169     */
       
  1170     virtual TInt TestQcControlByLayoutOrNullL( CStifItemParser& aItem );
       
  1171 
       
  1172     /**
       
  1173     * TestQcSetImageL test method for test the SetImageL.
       
  1174     * @since S60 5.0
       
  1175     * @param aItem Script line containing parameters.
       
  1176     * @return Symbian OS error code.
       
  1177     */
       
  1178     virtual TInt TestQcSetImageL( CStifItemParser& aItem );
       
  1179 
       
  1180     /**
       
  1181     * TestQcSetImageFullL test method for test the SetImagel.
       
  1182     * @since S60 5.0
       
  1183     * @param aItem Script line containing parameters.
       
  1184     * @return Symbian OS error code.
       
  1185     */
       
  1186     virtual TInt TestQcSetImageFullL( CStifItemParser& aItem );
       
  1187 
       
  1188     /**
       
  1189     * TestQcSetAnimationL test method for test the SetAnimation.
       
  1190     * @since S60 5.0
       
  1191     * @param aItem Script line containing parameters.
       
  1192     * @return Symbian OS error code.
       
  1193     */
       
  1194     virtual TInt TestQcSetAnimationL( CStifItemParser& aItem );
       
  1195 
       
  1196     /**
       
  1197     * TestQcStartAnimationL test method for test the StartAnimation.
       
  1198     * @since S60 5.0
       
  1199     * @param aItem Script line containing parameters.
       
  1200     * @return Symbian OS error code.
       
  1201     */
       
  1202     virtual TInt TestQcStartAnimationL( CStifItemParser& aItem );
       
  1203 
       
  1204     /**
       
  1205     * TestQcCancelAnimationL test method for test the CancelAnimation.
       
  1206     * @since S60 5.0
       
  1207     * @param aItem Script line containing parameters.
       
  1208     * @return Symbian OS error code.
       
  1209     */
       
  1210     virtual TInt TestQcCancelAnimationL( CStifItemParser& aItem );
       
  1211 
       
  1212     /**
       
  1213     * TestQcOfferKeyEventL test method for test the OfferKeyEvent.
       
  1214     * @since S60 5.0
       
  1215     * @param aItem Script line containing parameters.
       
  1216     * @return Symbian OS error code.
       
  1217     */
       
  1218     virtual TInt TestQcOfferKeyEventL( CStifItemParser& aItem );
       
  1219 
       
  1220     /**
       
  1221     * TestQcMinimumSizeL test method for test the MinimumSize.
       
  1222     * @since S60 5.0
       
  1223     * @param aItem Script line containing parameters.
       
  1224     * @return Symbian OS error code.
       
  1225     */
       
  1226     virtual TInt TestQcMinimumSizeL( CStifItemParser& aItem );
       
  1227 
       
  1228     /**
       
  1229     * TestQcHandleEdwinEventL test method for test the HandleEdwinEvent.
       
  1230     * @since S60 5.0
       
  1231     * @param aItem Script line containing parameters.
       
  1232     * @return Symbian OS error code.
       
  1233     */
       
  1234     virtual TInt TestQcHandleEdwinEventL( CStifItemParser& aItem );
       
  1235 
       
  1236     /**
       
  1237     * TestQcHandleEdwinSizeEventL test method for test the HandleEdwinSizeEvent.
       
  1238     * @since S60 5.0
       
  1239     * @param aItem Script line containing parameters.
       
  1240     * @return Symbian OS error code.
       
  1241     */
       
  1242     virtual TInt TestQcHandleEdwinSizeEventL( CStifItemParser& aItem );
       
  1243 
       
  1244     /**
       
  1245     * TestQcHandleControlEventL test method for test the HandleControlEvent.
       
  1246     * @since S60 5.0
       
  1247     * @param aItem Script line containing parameters.
       
  1248     * @return Symbian OS error code.
       
  1249     */
       
  1250     virtual TInt TestQcHandleControlEventL( CStifItemParser& aItem );
       
  1251 
       
  1252     /**
       
  1253     * TestQcQueryTypeL test method for test the QueryType.
       
  1254     * @since S60 5.0
       
  1255     * @param aItem Script line containing parameters.
       
  1256     * @return Symbian OS error code.
       
  1257     */
       
  1258     virtual TInt TestQcQueryTypeL( CStifItemParser& aItem );
       
  1259 
       
  1260     /**
       
  1261     * TestQcHandlePointerEventL test method for test the HandlePointerEventL.
       
  1262     * @since S60 5.0
       
  1263     * @param aItem Script line containing parameters.
       
  1264     * @return Symbian OS error code.
       
  1265     */
       
  1266     virtual TInt TestQcHandlePointerEventL( CStifItemParser& aItem );
       
  1267 
       
  1268     /**
       
  1269     * TestQcHandleResourceChangeL test method for test the HandleResourceChange.
       
  1270     * @since S60 5.0
       
  1271     * @param aItem Script line containing parameters.
       
  1272     * @return Symbian OS error code.
       
  1273     */
       
  1274     virtual TInt TestQcHandleResourceChangeL( CStifItemParser& aItem );
       
  1275 
       
  1276         //CAknExtQueryControl
       
  1277     /**
       
  1278     * TestQcHandleResourceChangeL test method for test the Constructor.
       
  1279     * @since S60 5.0
       
  1280     * @param aItem Script line containing parameters.
       
  1281     * @return Symbian OS error code.
       
  1282     */
       
  1283     virtual TInt TestExtQcConstructorL( CStifItemParser& aItem );
       
  1284 
       
  1285     /**
       
  1286     * TestQcHandleResourceChangeL test method for test the Destructor.
       
  1287     * @since S60 5.0
       
  1288     * @param aItem Script line containing parameters.
       
  1289     * @return Symbian OS error code.
       
  1290     */
       
  1291     virtual TInt TestExtQcDestructorL( CStifItemParser& aItem );
       
  1292 
       
  1293     /**
       
  1294     * TestExtQcGetInetAddressL test method for test the GetInetAddress.
       
  1295     * @since S60 5.0
       
  1296     * @param aItem Script line containing parameters.
       
  1297     * @return Symbian OS error code.
       
  1298     */
       
  1299     virtual TInt TestExtQcGetInetAddressL( CStifItemParser& aItem );
       
  1300 
       
  1301     /**
       
  1302     * TestExtQcSetInetAddressL test method for test the SetInetAddress.
       
  1303     * @since S60 5.0
       
  1304     * @param aItem Script line containing parameters.
       
  1305     * @return Symbian OS error code.
       
  1306     */
       
  1307     virtual TInt TestExtQcSetInetAddressL( CStifItemParser& aItem );
       
  1308 
       
  1309     /**
       
  1310     * TestExtQcGetFixedPointNumberL test method for test the GetFixedPointNumber.
       
  1311     * @since S60 5.0
       
  1312     * @param aItem Script line containing parameters.
       
  1313     * @return Symbian OS error code.
       
  1314     */
       
  1315     virtual TInt TestExtQcGetFixedPointNumberL( CStifItemParser& aItem );
       
  1316 
       
  1317     /**
       
  1318     * TestExtQcSetFixedPointNumberL test method for test the SetFixedPointNumberL.
       
  1319     * @since S60 5.0
       
  1320     * @param aItem Script line containing parameters.
       
  1321     * @return Symbian OS error code.
       
  1322     */
       
  1323     virtual TInt TestExtQcSetFixedPointNumberL( CStifItemParser& aItem );
       
  1324 
       
  1325     /**
       
  1326     * TestExtQcSetMinimumAndMaximumL test method for test the SetMinimumAndMaximum.
       
  1327     * @since S60 5.0
       
  1328     * @param aItem Script line containing parameters.
       
  1329     * @return Symbian OS error code.
       
  1330     */
       
  1331     virtual TInt TestExtQcSetMinimumAndMaximumL( CStifItemParser& aItem );
       
  1332 
       
  1333     /**
       
  1334     * TestExtQcSetMinimumAndMaximumLL test method for test the SetMinimumAndMaximum.
       
  1335     * @since S60 5.0
       
  1336     * @param aItem Script line containing parameters.
       
  1337     * @return Symbian OS error code.
       
  1338     */
       
  1339     virtual TInt TestExtQcSetMinimumAndMaximumLL( CStifItemParser& aItem );
       
  1340 
       
  1341     /**
       
  1342     * TestExtQcControlByLayoutOrNullL test method for test the ControlByLayoutOrNull.
       
  1343     * @since S60 5.0
       
  1344     * @param aItem Script line containing parameters.
       
  1345     * @return Symbian OS error code.
       
  1346     */
       
  1347     virtual TInt TestExtQcControlByLayoutOrNullL( CStifItemParser& aItem );
       
  1348 
       
  1349     /**
       
  1350     * TestExtQcHandleControlEventL test method for test the HandleControlEventL.
       
  1351     * @since S60 5.0
       
  1352     * @param aItem Script line containing parameters.
       
  1353     * @return Symbian OS error code.
       
  1354     */
       
  1355     virtual TInt TestExtQcHandleControlEventL( CStifItemParser& aItem );
       
  1356 
       
  1357     /**
       
  1358     * TestExtQcHandlePointerEventL test method for test the HandlePointerEventL.
       
  1359     * @since S60 5.0
       
  1360     * @param aItem Script line containing parameters.
       
  1361     * @return Symbian OS error code.
       
  1362     */
       
  1363     virtual TInt TestExtQcHandlePointerEventL( CStifItemParser& aItem );
       
  1364     
       
  1365 //aknquerydata.h
       
  1366     /**
       
  1367     * TestQdGetMaxTextLengthL test method for test the GetMaxTextLength.
       
  1368     * @since S60 5.0
       
  1369     * @param aItem Script line containing parameters.
       
  1370     * @return Symbian OS error code.
       
  1371     */
       
  1372     virtual TInt TestQdataGetMaxTextLengthL( CStifItemParser& aItem );
       
  1373     
       
  1374 //aknquerydialog.h
       
  1375         //CAknQueryDialog
       
  1376     /**
       
  1377     * TestQdlgNewLOneL test method for test the HandlePointerEventL.
       
  1378     * @since S60 5.0
       
  1379     * @param aItem Script line containing parameters.
       
  1380     * @return Symbian OS error code.
       
  1381     */
       
  1382     virtual TInt TestQdlgNewLOneL( CStifItemParser& aItem );
       
  1383 
       
  1384     /**
       
  1385     * TestQdlgNewLTwoL test method for test the HandlePointerEventL.
       
  1386     * @since S60 5.0
       
  1387     * @param aItem Script line containing parameters.
       
  1388     * @return Symbian OS error code.
       
  1389     */
       
  1390     virtual TInt TestQdlgNewLTwoL( CStifItemParser& aItem );
       
  1391 
       
  1392     /**
       
  1393     * TestQdlgNewLThreeL test method for test the HandlePointerEventL.
       
  1394     * @since S60 5.0
       
  1395     * @param aItem Script line containing parameters.
       
  1396     * @return Symbian OS error code.
       
  1397     */
       
  1398     virtual TInt TestQdlgNewLThreeL( CStifItemParser& aItem );
       
  1399 
       
  1400     /**
       
  1401     * TestQdlgNewLFourL test method for test the HandlePointerEventL.
       
  1402     * @since S60 5.0
       
  1403     * @param aItem Script line containing parameters.
       
  1404     * @return Symbian OS error code.
       
  1405     */
       
  1406     virtual TInt TestQdlgNewLFourL( CStifItemParser& aItem );
       
  1407 
       
  1408     /**
       
  1409     * TestQdlgNewLFiveL test method for test the HandlePointerEventL.
       
  1410     * @since S60 5.0
       
  1411     * @param aItem Script line containing parameters.
       
  1412     * @return Symbian OS error code.
       
  1413     */
       
  1414     virtual TInt TestQdlgNewLFiveL( CStifItemParser& aItem );
       
  1415 
       
  1416     /**
       
  1417     * TestQdlgNewLSixL test method for test the HandlePointerEventL.
       
  1418     * @since S60 5.0
       
  1419     * @param aItem Script line containing parameters.
       
  1420     * @return Symbian OS error code.
       
  1421     */
       
  1422     virtual TInt TestQdlgNewLSixL( CStifItemParser& aItem );
       
  1423 
       
  1424     /**
       
  1425     * TestQdlgNewLSevenL test method for test the HandlePointerEventL.
       
  1426     * @since S60 5.0
       
  1427     * @param aItem Script line containing parameters.
       
  1428     * @return Symbian OS error code.
       
  1429     */
       
  1430     virtual TInt TestQdlgNewLSevenL( CStifItemParser& aItem );
       
  1431 
       
  1432     /**
       
  1433     * TestQdlgNewLEightL test method for test the HandlePointerEventL.
       
  1434     * @since S60 5.0
       
  1435     * @param aItem Script line containing parameters.
       
  1436     * @return Symbian OS error code.
       
  1437     */
       
  1438     virtual TInt TestQdlgNewLEightL( CStifItemParser& aItem );
       
  1439 
       
  1440     /**
       
  1441     * TestQdlgDestructorL test method for test the HandlePointerEventL.
       
  1442     * @since S60 5.0
       
  1443     * @param aItem Script line containing parameters.
       
  1444     * @return Symbian OS error code.
       
  1445     */
       
  1446     virtual TInt TestQdlgDestructorL( CStifItemParser& aItem );
       
  1447 
       
  1448     /**
       
  1449     * TestQdlgConstructorOneL test method for test the HandlePointerEventL.
       
  1450     * @since S60 5.0
       
  1451     * @param aItem Script line containing parameters.
       
  1452     * @return Symbian OS error code.
       
  1453     */
       
  1454     virtual TInt TestQdlgConstructorOneL( CStifItemParser& aItem );
       
  1455 
       
  1456     /**
       
  1457     * TestQdlgQueryHeadingL test method for test the HandlePointerEventL.
       
  1458     * @since S60 5.0
       
  1459     * @param aItem Script line containing parameters.
       
  1460     * @return Symbian OS error code.
       
  1461     */
       
  1462     virtual TInt TestQdlgQueryHeadingL( CStifItemParser& aItem );
       
  1463 
       
  1464     /**
       
  1465     * TestQdlgHeadingL test method for test the HandlePointerEventL.
       
  1466     * @since S60 5.0
       
  1467     * @param aItem Script line containing parameters.
       
  1468     * @return Symbian OS error code.
       
  1469     */
       
  1470     virtual TInt TestQdlgHeadingL( CStifItemParser& aItem );
       
  1471 
       
  1472     /**
       
  1473     * TestQdlgSetPromptL test method for test the HandlePointerEventL.
       
  1474     * @since S60 5.0
       
  1475     * @param aItem Script line containing parameters.
       
  1476     * @return Symbian OS error code.
       
  1477     */
       
  1478     virtual TInt TestQdlgSetPromptL( CStifItemParser& aItem );
       
  1479 
       
  1480     /**
       
  1481     * TestQdlgMakeLeftSoftkeyVisibleL test method for test the HandlePointerEventL.
       
  1482     * @since S60 5.0
       
  1483     * @param aItem Script line containing parameters.
       
  1484     * @return Symbian OS error code.
       
  1485     */
       
  1486     virtual TInt TestQdlgMakeLeftSoftkeyVisibleL( CStifItemParser& aItem );
       
  1487 
       
  1488     /**
       
  1489     * TestQdlgSetEmergencyCallSupportL test method for test the HandlePointerEventL.
       
  1490     * @since S60 5.0
       
  1491     * @param aItem Script line containing parameters.
       
  1492     * @return Symbian OS error code.
       
  1493     */
       
  1494     virtual TInt TestQdlgSetEmergencyCallSupportL( CStifItemParser& aItem );
       
  1495 
       
  1496     /**
       
  1497     * TestQdlgRemoveEditorIndicatorL test method for test the HandlePointerEventL.
       
  1498     * @since S60 5.0
       
  1499     * @param aItem Script line containing parameters.
       
  1500     * @return Symbian OS error code.
       
  1501     */
       
  1502     virtual TInt TestQdlgRemoveEditorIndicatorL( CStifItemParser& aItem );
       
  1503 
       
  1504     /**
       
  1505     * TestQdlgSetPredictiveTextInputPermittedL test method for test the HandlePointerEventL.
       
  1506     * @since S60 5.0
       
  1507     * @param aItem Script line containing parameters.
       
  1508     * @return Symbian OS error code.
       
  1509     */
       
  1510     virtual TInt TestQdlgSetPredictiveTextInputPermittedL( CStifItemParser& aItem );
       
  1511 
       
  1512     /**
       
  1513     * TestQdlgRunLDL test method for test the HandlePointerEventL.
       
  1514     * @since S60 5.0
       
  1515     * @param aItem Script line containing parameters.
       
  1516     * @return Symbian OS error code.
       
  1517     */
       
  1518     virtual TInt TestQdlgRunLDL( CStifItemParser& aItem );
       
  1519 
       
  1520     /**
       
  1521     * TestQdlgExecuteLDOneL test method for test the HandlePointerEventL.
       
  1522     * @since S60 5.0
       
  1523     * @param aItem Script line containing parameters.
       
  1524     * @return Symbian OS error code.
       
  1525     */
       
  1526     virtual TInt TestQdlgExecuteLDOneL( CStifItemParser& aItem );
       
  1527 
       
  1528     /**
       
  1529     * TestQdlgExecuteLDTwoL test method for test the HandlePointerEventL.
       
  1530     * @since S60 5.0
       
  1531     * @param aItem Script line containing parameters.
       
  1532     * @return Symbian OS error code.
       
  1533     */
       
  1534     virtual TInt TestQdlgExecuteLDTwoL( CStifItemParser& aItem );
       
  1535 
       
  1536     /**
       
  1537     * TestQdlgOfferKeyEventL test method for test the HandlePointerEventL.
       
  1538     * @since S60 5.0
       
  1539     * @param aItem Script line containing parameters.
       
  1540     * @return Symbian OS error code.
       
  1541     */
       
  1542     virtual TInt TestQdlgOfferKeyEventL( CStifItemParser& aItem );
       
  1543 
       
  1544     /**
       
  1545     * TestQdlgHandlePointerEventL test method for test the HandlePointerEventL.
       
  1546     * @since S60 5.0
       
  1547     * @param aItem Script line containing parameters.
       
  1548     * @return Symbian OS error code.
       
  1549     */
       
  1550     virtual TInt TestQdlgHandlePointerEventL( CStifItemParser& aItem );
       
  1551 
       
  1552     /**
       
  1553     * TestQdlgMaxTextLengthOneL test method for test the HandlePointerEventL.
       
  1554     * @since S60 5.0
       
  1555     * @param aItem Script line containing parameters.
       
  1556     * @return Symbian OS error code.
       
  1557     */
       
  1558     virtual TInt TestQdlgMaxTextLengthOneL( CStifItemParser& aItem );
       
  1559 
       
  1560     /**
       
  1561     * TestQdlgSetSizeAndPositionL test method for test the HandlePointerEventL.
       
  1562     * @since S60 5.0
       
  1563     * @param aItem Script line containing parameters.
       
  1564     * @return Symbian OS error code.
       
  1565     */
       
  1566     virtual TInt TestQdlgSetSizeAndPositionL( CStifItemParser& aItem );
       
  1567 
       
  1568     /**
       
  1569     * TestQdlgPreLayoutDynInitL test method for test the HandlePointerEventL.
       
  1570     * @since S60 5.0
       
  1571     * @param aItem Script line containing parameters.
       
  1572     * @return Symbian OS error code.
       
  1573     */
       
  1574     virtual TInt TestQdlgPreLayoutDynInitL( CStifItemParser& aItem );
       
  1575 
       
  1576     /**
       
  1577     * TestQdlgPostLayoutDynInitL test method for test the HandlePointerEventL.
       
  1578     * @since S60 5.0
       
  1579     * @param aItem Script line containing parameters.
       
  1580     * @return Symbian OS error code.
       
  1581     */
       
  1582     virtual TInt TestQdlgPostLayoutDynInitL( CStifItemParser& aItem );
       
  1583 
       
  1584     /**
       
  1585     * TestQdlgOkToExitL test method for test the HandlePointerEventL.
       
  1586     * @since S60 5.0
       
  1587     * @param aItem Script line containing parameters.
       
  1588     * @return Symbian OS error code.
       
  1589     */
       
  1590     virtual TInt TestQdlgOkToExitL( CStifItemParser& aItem );
       
  1591 
       
  1592     /**
       
  1593     * TestQdlgHandleQueryEditorSizeEventL test method for test the HandlePointerEventL.
       
  1594     * @since S60 5.0
       
  1595     * @param aItem Script line containing parameters.
       
  1596     * @return Symbian OS error code.
       
  1597     */
       
  1598     virtual TInt TestQdlgHandleQueryEditorSizeEventL( CStifItemParser& aItem );
       
  1599 
       
  1600     /**
       
  1601     * TestQdlgHandleQueryEditorStateEventL test method for test the HandlePointerEventL.
       
  1602     * @since S60 5.0
       
  1603     * @param aItem Script line containing parameters.
       
  1604     * @return Symbian OS error code.
       
  1605     */
       
  1606     virtual TInt TestQdlgHandleQueryEditorStateEventL( CStifItemParser& aItem );
       
  1607 
       
  1608     /**
       
  1609     * TestQdlgNeedToDismissQueryL test method for test the HandlePointerEventL.
       
  1610     * @since S60 5.0
       
  1611     * @param aItem Script line containing parameters.
       
  1612     * @return Symbian OS error code.
       
  1613     */
       
  1614     virtual TInt TestQdlgNeedToDismissQueryL( CStifItemParser& aItem );
       
  1615 
       
  1616     /**
       
  1617     * TestQdlgDismissQueryL test method for test the HandlePointerEventL.
       
  1618     * @since S60 5.0
       
  1619     * @param aItem Script line containing parameters.
       
  1620     * @return Symbian OS error code.
       
  1621     */
       
  1622     virtual TInt TestQdlgDismissQueryL( CStifItemParser& aItem );
       
  1623 
       
  1624     /**
       
  1625     * TestQdlgUpdateLeftSoftKeyL test method for test the HandlePointerEventL.
       
  1626     * @since S60 5.0
       
  1627     * @param aItem Script line containing parameters.
       
  1628     * @return Symbian OS error code.
       
  1629     */
       
  1630     virtual TInt TestQdlgUpdateLeftSoftKeyL( CStifItemParser& aItem );
       
  1631 
       
  1632     /**
       
  1633     * TestQdlgDoSetPromptL test method for test the HandlePointerEventL.
       
  1634     * @since S60 5.0
       
  1635     * @param aItem Script line containing parameters.
       
  1636     * @return Symbian OS error code.
       
  1637     */
       
  1638     virtual TInt TestQdlgDoSetPromptL( CStifItemParser& aItem );
       
  1639 
       
  1640     /**
       
  1641     * TestQdlgQueryControlL test method for test the HandlePointerEventL.
       
  1642     * @since S60 5.0
       
  1643     * @param aItem Script line containing parameters.
       
  1644     * @return Symbian OS error code.
       
  1645     */
       
  1646     virtual TInt TestQdlgQueryControlL( CStifItemParser& aItem );
       
  1647 
       
  1648     /**
       
  1649     * TestQdlgPromptL test method for test the Prompt.
       
  1650     * @since S60 5.0
       
  1651     * @param aItem Script line containing parameters.
       
  1652     * @return Symbian OS error code.
       
  1653     */
       
  1654     virtual TInt TestQdlgPromptL( CStifItemParser& aItem );
       
  1655 
       
  1656     /**
       
  1657     * TestQdlgConstructorTwoL test method for test the Constructor.
       
  1658     * @since S60 5.0
       
  1659     * @param aItem Script line containing parameters.
       
  1660     * @return Symbian OS error code.
       
  1661     */
       
  1662     virtual TInt TestQdlgConstructorTwoL( CStifItemParser& aItem );
       
  1663 
       
  1664     /**
       
  1665     * TestQdlgConstructorThreeL test method for test the Constructor.
       
  1666     * @since S60 5.0
       
  1667     * @param aItem Script line containing parameters.
       
  1668     * @return Symbian OS error code.
       
  1669     */
       
  1670     virtual TInt TestQdlgConstructorThreeL( CStifItemParser& aItem );
       
  1671 
       
  1672     /**
       
  1673     * TestQdlgSetHeaderTextL test method for test the SetHeaderText.
       
  1674     * @since S60 5.0
       
  1675     * @param aItem Script line containing parameters.
       
  1676     * @return Symbian OS error code.
       
  1677     */
       
  1678     virtual TInt TestQdlgSetHeaderTextL( CStifItemParser& aItem );
       
  1679 
       
  1680     /**
       
  1681     * TestQdlgSetHeaderImageL test method for test the SetHeaderImage.
       
  1682     * @since S60 5.0
       
  1683     * @param aItem Script line containing parameters.
       
  1684     * @return Symbian OS error code.
       
  1685     */
       
  1686     virtual TInt TestQdlgSetHeaderImageL( CStifItemParser& aItem );
       
  1687 
       
  1688     /**
       
  1689     * TestQdlgRunDlgLDL test method for test the RunDlgLD.
       
  1690     * @since S60 5.0
       
  1691     * @param aItem Script line containing parameters.
       
  1692     * @return Symbian OS error code.
       
  1693     */
       
  1694     virtual TInt TestQdlgRunDlgLDL( CStifItemParser& aItem );
       
  1695 
       
  1696     /**
       
  1697     * TestQdlgMaxTextLengthL test method for test the MaxTextLength.
       
  1698     * @since S60 5.0
       
  1699     * @param aItem Script line containing parameters.
       
  1700     * @return Symbian OS error code.
       
  1701     */
       
  1702     virtual TInt TestQdlgMaxTextLengthTwoL( CStifItemParser& aItem );
       
  1703 
       
  1704     /**
       
  1705     * TestQdlgInputCapabilitiesL test method for test the InputCapabilities.
       
  1706     * @since S60 5.0
       
  1707     * @param aItem Script line containing parameters.
       
  1708     * @return Symbian OS error code.
       
  1709     */
       
  1710     virtual TInt TestQdlgInputCapabilitiesL( CStifItemParser& aItem );
       
  1711 
       
  1712     /**
       
  1713     * TestQdlgSetEmergencyCallSupportForCBAL test method for test the SetEmergencyCallSupportForCBA.
       
  1714     * @since S60 5.0
       
  1715     * @param aItem Script line containing parameters.
       
  1716     * @return Symbian OS error code.
       
  1717     */
       
  1718     virtual TInt TestQdlgSetEmergencyCallSupportForCBAL( CStifItemParser& aItem );
       
  1719         
       
  1720         //CAknTextQueryDialog
       
  1721     /**
       
  1722     * TestTextQdlgNewL test method for test the NewL.
       
  1723     * @since S60 5.0
       
  1724     * @param aItem Script line containing parameters.
       
  1725     * @return Symbian OS error code.
       
  1726     */
       
  1727     virtual TInt TestTextQdlgNewL( CStifItemParser& aItem );
       
  1728 
       
  1729     /**
       
  1730     * TestTextQdlgConstructorL test method for test the Constructor.
       
  1731     * @since S60 5.0
       
  1732     * @param aItem Script line containing parameters.
       
  1733     * @return Symbian OS error code.
       
  1734     */
       
  1735     virtual TInt TestTextQdlgConstructorL( CStifItemParser& aItem );
       
  1736 
       
  1737     /**
       
  1738     * TestTextQdlgDestructorL test method for test the Destructor.
       
  1739     * @since S60 5.0
       
  1740     * @param aItem Script line containing parameters.
       
  1741     * @return Symbian OS error code.
       
  1742     */
       
  1743     virtual TInt TestTextQdlgDestructorL( CStifItemParser& aItem );
       
  1744 
       
  1745     /**
       
  1746     * TestTextQdlgSetMaxLengthL test method for test the SetMaxLength.
       
  1747     * @since S60 5.0
       
  1748     * @param aItem Script line containing parameters.
       
  1749     * @return Symbian OS error code.
       
  1750     */
       
  1751     virtual TInt TestTextQdlgSetMaxLengthL( CStifItemParser& aItem );
       
  1752 
       
  1753     /**
       
  1754     * TestTextQdlgCheckIfEntryTextOkL test method for test the CheckIfEntryTextOk.
       
  1755     * @since S60 5.0
       
  1756     * @param aItem Script line containing parameters.
       
  1757     * @return Symbian OS error code.
       
  1758     */
       
  1759     virtual TInt TestTextQdlgCheckIfEntryTextOkL( CStifItemParser& aItem );
       
  1760 
       
  1761     /**
       
  1762     * TestTextQdlgSetDefaultInputModeL test method for test the SetDefaultInputMode.
       
  1763     * @since S60 5.0
       
  1764     * @param aItem Script line containing parameters.
       
  1765     * @return Symbian OS error code.
       
  1766     */
       
  1767     virtual TInt TestTextQdlgSetDefaultInputModeL( CStifItemParser& aItem );
       
  1768 
       
  1769     /**
       
  1770     * TestTextQdlgPreLayoutDynInitL test method for test the PreLayoutDynInitL.
       
  1771     * @since S60 5.0
       
  1772     * @param aItem Script line containing parameters.
       
  1773     * @return Symbian OS error code.
       
  1774     */
       
  1775     virtual TInt TestTextQdlgPreLayoutDynInitL( CStifItemParser& aItem );
       
  1776 
       
  1777     /**
       
  1778     * TestTextQdlgOkToExitL test method for test the OkToExitL.
       
  1779     * @since S60 5.0
       
  1780     * @param aItem Script line containing parameters.
       
  1781     * @return Symbian OS error code.
       
  1782     */
       
  1783     virtual TInt TestTextQdlgOkToExitL( CStifItemParser& aItem );
       
  1784 
       
  1785     /**
       
  1786     * TestTextQdlgHandleQueryEditorSizeEventL test method for test the HandleQueryEditorSizeEventL.
       
  1787     * @since S60 5.0
       
  1788     * @param aItem Script line containing parameters.
       
  1789     * @return Symbian OS error code.
       
  1790     */
       
  1791     virtual TInt TestTextQdlgHandleQueryEditorSizeEventL( CStifItemParser& aItem );
       
  1792 
       
  1793     /**
       
  1794     * TestTextQdlgHandlePointerEventL test method for test the HandlePointerEventL.
       
  1795     * @since S60 5.0
       
  1796     * @param aItem Script line containing parameters.
       
  1797     * @return Symbian OS error code.
       
  1798     */
       
  1799     virtual TInt TestTextQdlgHandlePointerEventL( CStifItemParser& aItem );
       
  1800 
       
  1801     /**
       
  1802     * TestTextQdlgConstructorLL test method for test the Constructor.
       
  1803     * @since S60 5.0
       
  1804     * @param aItem Script line containing parameters.
       
  1805     * @return Symbian OS error code.
       
  1806     */
       
  1807     virtual TInt TestTextQdlgConstructorLL( CStifItemParser& aItem );
       
  1808     
       
  1809 //CAknNumberQueryDialog
       
  1810     /**
       
  1811     * TestNumberQdlgNewL test method for test the NewL.
       
  1812     * @since S60 5.0
       
  1813     * @param aItem Script line containing parameters.
       
  1814     * @return Symbian OS error code.
       
  1815     */
       
  1816     virtual TInt TestNumberQdlgNewL( CStifItemParser& aItem );
       
  1817 
       
  1818     /**
       
  1819     * TestNumberQdlgConstructorL test method for test the Constructor.
       
  1820     * @since S60 5.0
       
  1821     * @param aItem Script line containing parameters.
       
  1822     * @return Symbian OS error code.
       
  1823     */
       
  1824     virtual TInt TestNumberQdlgConstructorL( CStifItemParser& aItem );
       
  1825 
       
  1826     /**
       
  1827     * TestNumberQdlgDestructorL test method for test the Destructor.
       
  1828     * @since S60 5.0
       
  1829     * @param aItem Script line containing parameters.
       
  1830     * @return Symbian OS error code.
       
  1831     */
       
  1832     virtual TInt TestNumberQdlgDestructorL( CStifItemParser& aItem );
       
  1833 
       
  1834     /**
       
  1835     * TestNumberQdlgSetMinimumAndMaximumL test method for test the SetMinimumAndMaximum.
       
  1836     * @since S60 5.0
       
  1837     * @param aItem Script line containing parameters.
       
  1838     * @return Symbian OS error code.
       
  1839     */
       
  1840     virtual TInt TestNumberQdlgSetMinimumAndMaximumL( CStifItemParser& aItem );
       
  1841 
       
  1842     /**
       
  1843     * TestNumberQdlgHandlePointerEventL test method for test the HandlePointerEvent.
       
  1844     * @since S60 5.0
       
  1845     * @param aItem Script line containing parameters.
       
  1846     * @return Symbian OS error code.
       
  1847     */
       
  1848     virtual TInt TestNumberQdlgHandlePointerEventL( CStifItemParser& aItem );
       
  1849 
       
  1850     /**
       
  1851     * TestNumberQdlgPreLayoutDynInitL test method for test the PreLayoutDynInit.
       
  1852     * @since S60 5.0
       
  1853     * @param aItem Script line containing parameters.
       
  1854     * @return Symbian OS error code.
       
  1855     */
       
  1856     virtual TInt TestNumberQdlgPreLayoutDynInitL( CStifItemParser& aItem );
       
  1857 
       
  1858     /**
       
  1859     * TestNumberQdlgOkToExitL test method for test the OkToExit.
       
  1860     * @since S60 5.0
       
  1861     * @param aItem Script line containing parameters.
       
  1862     * @return Symbian OS error code.
       
  1863     */
       
  1864     virtual TInt TestNumberQdlgOkToExitL( CStifItemParser& aItem );
       
  1865 
       
  1866     /**
       
  1867     * TestNumberQdlgNumberL test method for test the Number.
       
  1868     * @since S60 5.0
       
  1869     * @param aItem Script line containing parameters.
       
  1870     * @return Symbian OS error code.
       
  1871     */
       
  1872     virtual TInt TestNumberQdlgNumberOneL( CStifItemParser& aItem );
       
  1873 
       
  1874     /**
       
  1875     * TestNumberQdlgNumberL test method for test the Number.
       
  1876     * @since S60 5.0
       
  1877     * @param aItem Script line containing parameters.
       
  1878     * @return Symbian OS error code.
       
  1879     */
       
  1880     virtual TInt TestNumberQdlgNumberTwoL( CStifItemParser& aItem );
       
  1881     
       
  1882 //CAknTimeQueryDialog
       
  1883     /**
       
  1884     * TestTimeQdlgNewL test method for test the NewL.
       
  1885     * @since S60 5.0
       
  1886     * @param aItem Script line containing parameters.
       
  1887     * @return Symbian OS error code.
       
  1888     */
       
  1889     virtual TInt TestTimeQdlgNewL( CStifItemParser& aItem );
       
  1890 
       
  1891     /**
       
  1892     * TestTimeQdlgConstructorL test method for test the Constructor.
       
  1893     * @since S60 5.0
       
  1894     * @param aItem Script line containing parameters.
       
  1895     * @return Symbian OS error code.
       
  1896     */
       
  1897     virtual TInt TestTimeQdlgConstructorL( CStifItemParser& aItem );
       
  1898 
       
  1899     /**
       
  1900     * TestTimeQdlgDestructorL test method for test the Destructor.
       
  1901     * @since S60 5.0
       
  1902     * @param aItem Script line containing parameters.
       
  1903     * @return Symbian OS error code.
       
  1904     */
       
  1905     virtual TInt TestTimeQdlgDestructorL( CStifItemParser& aItem );
       
  1906 
       
  1907     /**
       
  1908     * TestTimeQdlgSetMinimumAndMaximumL test method for test the SetMinimumAndMaximumL.
       
  1909     * @since S60 5.0
       
  1910     * @param aItem Script line containing parameters.
       
  1911     * @return Symbian OS error code.
       
  1912     */
       
  1913     virtual TInt TestTimeQdlgSetMinimumAndMaximumL( CStifItemParser& aItem );
       
  1914 
       
  1915     /**
       
  1916     * TestTimeQdlgHandlePointerEventL test method for test the HandlePointerEventL.
       
  1917     * @since S60 5.0
       
  1918     * @param aItem Script line containing parameters.
       
  1919     * @return Symbian OS error code.
       
  1920     */
       
  1921     virtual TInt TestTimeQdlgHandlePointerEventL( CStifItemParser& aItem );
       
  1922 
       
  1923     /**
       
  1924     * TestTimeQdlgPreLayoutDynInitL test method for test the PreLayoutDynInitL.
       
  1925     * @since S60 5.0
       
  1926     * @param aItem Script line containing parameters.
       
  1927     * @return Symbian OS error code.
       
  1928     */
       
  1929     virtual TInt TestTimeQdlgPreLayoutDynInitL( CStifItemParser& aItem );
       
  1930 
       
  1931     /**
       
  1932     * TestTimeQdlgOkToExitL test method for test the OkToExitL.
       
  1933     * @since S60 5.0
       
  1934     * @param aItem Script line containing parameters.
       
  1935     * @return Symbian OS error code.
       
  1936     */
       
  1937     virtual TInt TestTimeQdlgOkToExitL( CStifItemParser& aItem );
       
  1938 
       
  1939     /**
       
  1940     * TestTimeQdlgTimeOneL test method for test the Time.
       
  1941     * @since S60 5.0
       
  1942     * @param aItem Script line containing parameters.
       
  1943     * @return Symbian OS error code.
       
  1944     */
       
  1945     virtual TInt TestTimeQdlgTimeOneL( CStifItemParser& aItem );
       
  1946 
       
  1947     /**
       
  1948     * TestTimeQdlgTimeTwoL test method for test the Time.
       
  1949     * @since S60 5.0
       
  1950     * @param aItem Script line containing parameters.
       
  1951     * @return Symbian OS error code.
       
  1952     */
       
  1953     virtual TInt TestTimeQdlgTimeTwoL( CStifItemParser& aItem );
       
  1954 
       
  1955     /**
       
  1956     * TestTimeQdlgConstructorLL test method for test the Constructor.
       
  1957     * @since S60 5.0
       
  1958     * @param aItem Script line containing parameters.
       
  1959     * @return Symbian OS error code.
       
  1960     */
       
  1961     virtual TInt TestTimeQdlgConstructorLL( CStifItemParser& aItem );
       
  1962     
       
  1963 //CAknDurationQueryDialog
       
  1964     /**
       
  1965     * TestDurationNewL test method for test the NewL.
       
  1966     * @since S60 5.0
       
  1967     * @param aItem Script line containing parameters.
       
  1968     * @return Symbian OS error code.
       
  1969     */
       
  1970     virtual TInt TestDurationNewL( CStifItemParser& aItem );
       
  1971     
       
  1972     /**
       
  1973     * TestDurationConstructorL test method for test the Constructor.
       
  1974     * @since S60 5.0
       
  1975     * @param aItem Script line containing parameters.
       
  1976     * @return Symbian OS error code.
       
  1977     */
       
  1978     virtual TInt TestDurationConstructorL( CStifItemParser& aItem );
       
  1979     
       
  1980     /**
       
  1981     * TestDurationDestructorL test method for test the Destructor.
       
  1982     * @since S60 5.0
       
  1983     * @param aItem Script line containing parameters.
       
  1984     * @return Symbian OS error code.
       
  1985     */
       
  1986     virtual TInt TestDurationDestructorL( CStifItemParser& aItem );
       
  1987     
       
  1988     /**
       
  1989     * TestDurationSetMinimumAndMaximumL test method for test the SetMinimumAndMaximum.
       
  1990     * @since S60 5.0
       
  1991     * @param aItem Script line containing parameters.
       
  1992     * @return Symbian OS error code.
       
  1993     */
       
  1994     virtual TInt TestDurationSetMinimumAndMaximumL( CStifItemParser& aItem );
       
  1995     
       
  1996     /**
       
  1997     * TestDurationHandlePointerEventL test method for test the HandlePointerEventL.
       
  1998     * @since S60 5.0
       
  1999     * @param aItem Script line containing parameters.
       
  2000     * @return Symbian OS error code.
       
  2001     */
       
  2002     virtual TInt TestDurationHandlePointerEventL( CStifItemParser& aItem );
       
  2003     
       
  2004     /**
       
  2005     * TestDurationPreLayoutDynInitL test method for test the PreLayoutDynInit.
       
  2006     * @since S60 5.0
       
  2007     * @param aItem Script line containing parameters.
       
  2008     * @return Symbian OS error code.
       
  2009     */
       
  2010     virtual TInt TestDurationPreLayoutDynInitL( CStifItemParser& aItem );
       
  2011     
       
  2012     /**
       
  2013     * TestDurationOkToExitL test method for test the OkToExit.
       
  2014     * @since S60 5.0
       
  2015     * @param aItem Script line containing parameters.
       
  2016     * @return Symbian OS error code.
       
  2017     */
       
  2018     virtual TInt TestDurationOkToExitL( CStifItemParser& aItem );
       
  2019     
       
  2020     /**
       
  2021     * TestDurationDurationOneL test method for test the Duration.
       
  2022     * @since S60 5.0
       
  2023     * @param aItem Script line containing parameters.
       
  2024     * @return Symbian OS error code.
       
  2025     */
       
  2026     virtual TInt TestDurationDurationOneL( CStifItemParser& aItem );
       
  2027     
       
  2028     /**
       
  2029     * TestDurationDurationTwoL test method for test the Duration.
       
  2030     * @since S60 5.0
       
  2031     * @param aItem Script line containing parameters.
       
  2032     * @return Symbian OS error code.
       
  2033     */
       
  2034     virtual TInt TestDurationDurationTwoL( CStifItemParser& aItem );
       
  2035     
       
  2036 //CAknFloatingPointQueryDialog
       
  2037     /**
       
  2038     * TestFloatingQdlgNewL test method for test the NewL.
       
  2039     * @since S60 5.0
       
  2040     * @param aItem Script line containing parameters.
       
  2041     * @return Symbian OS error code.
       
  2042     */
       
  2043     virtual TInt TestFloatingQdlgNewL( CStifItemParser& aItem );
       
  2044     
       
  2045     /**
       
  2046     * TestFloatingQdlgConstructorL test method for test the Constructor.
       
  2047     * @since S60 5.0
       
  2048     * @param aItem Script line containing parameters.
       
  2049     * @return Symbian OS error code.
       
  2050     */
       
  2051     virtual TInt TestFloatingQdlgConstructorL( CStifItemParser& aItem );
       
  2052     
       
  2053     /**
       
  2054     * TestFloatingQdlgDestructorL test method for test the Destructor.
       
  2055     * @since S60 5.0
       
  2056     * @param aItem Script line containing parameters.
       
  2057     * @return Symbian OS error code.
       
  2058     */
       
  2059     virtual TInt TestFloatingQdlgDestructorL( CStifItemParser& aItem );
       
  2060     
       
  2061     /**
       
  2062     * TestFloatingQdlgSetMinimumAndMaximumL test method for test the SetMinimumAndMaximumL.
       
  2063     * @since S60 5.0
       
  2064     * @param aItem Script line containing parameters.
       
  2065     * @return Symbian OS error code.
       
  2066     */
       
  2067     virtual TInt TestFloatingQdlgSetMinimumAndMaximumL( CStifItemParser& aItem );
       
  2068     
       
  2069     /**
       
  2070     * TestFloatingQdlgHandlePointerEventL test method for test the HandlePointerEventL.
       
  2071     * @since S60 5.0
       
  2072     * @param aItem Script line containing parameters.
       
  2073     * @return Symbian OS error code.
       
  2074     */
       
  2075     virtual TInt TestFloatingQdlgHandlePointerEventL( CStifItemParser& aItem );
       
  2076     
       
  2077     /**
       
  2078     * TestFloatingQdlgPreLayoutDynInitL test method for test the PreLayoutDynInitL.
       
  2079     * @since S60 5.0
       
  2080     * @param aItem Script line containing parameters.
       
  2081     * @return Symbian OS error code.
       
  2082     */
       
  2083     virtual TInt TestFloatingQdlgPreLayoutDynInitL( CStifItemParser& aItem );
       
  2084     
       
  2085     /**
       
  2086     * TestFloatingQdlgOkToExitL test method for test the OkToExitL.
       
  2087     * @since S60 5.0
       
  2088     * @param aItem Script line containing parameters.
       
  2089     * @return Symbian OS error code.
       
  2090     */
       
  2091     virtual TInt TestFloatingQdlgOkToExitL( CStifItemParser& aItem );
       
  2092     
       
  2093     /**
       
  2094     * TestFloatingQdlgNumberOneL test method for test the Number.
       
  2095     * @since S60 5.0
       
  2096     * @param aItem Script line containing parameters.
       
  2097     * @return Symbian OS error code.
       
  2098     */
       
  2099     virtual TInt TestFloatingQdlgNumberOneL( CStifItemParser& aItem );
       
  2100     
       
  2101     /**
       
  2102     * TestFloatingQdlgNumberTwoL test method for test the Number.
       
  2103     * @since S60 5.0
       
  2104     * @param aItem Script line containing parameters.
       
  2105     * @return Symbian OS error code.
       
  2106     */
       
  2107     virtual TInt TestFloatingQdlgNumberTwoL( CStifItemParser& aItem );
       
  2108     
       
  2109 //CAknMultiLineDataQueryDialog
       
  2110     /**
       
  2111     * TestMultiLineDataQdlgNewLOneL test method for test the NewL.
       
  2112     * @since S60 5.0
       
  2113     * @param aItem Script line containing parameters.
       
  2114     * @return Symbian OS error code.
       
  2115     */
       
  2116     virtual TInt TestMultiLineDataQdlgNewLOneL( CStifItemParser& aItem );
       
  2117     
       
  2118     /**
       
  2119     * TestMultiLineDataQdlgNewLTwoL test method for test the NewL.
       
  2120     * @since S60 5.0
       
  2121     * @param aItem Script line containing parameters.
       
  2122     * @return Symbian OS error code.
       
  2123     */
       
  2124     virtual TInt TestMultiLineDataQdlgNewLTwoL( CStifItemParser& aItem );
       
  2125     
       
  2126     /**
       
  2127     * TestMultiLineDataQdlgNewLThreeL test method for test the NewL.
       
  2128     * @since S60 5.0
       
  2129     * @param aItem Script line containing parameters.
       
  2130     * @return Symbian OS error code.
       
  2131     */
       
  2132     virtual TInt TestMultiLineDataQdlgNewLThreeL( CStifItemParser& aItem );
       
  2133     
       
  2134     /**
       
  2135     * TestMultiLineDataQdlgNewLFourL test method for test the NewL.
       
  2136     * @since S60 5.0
       
  2137     * @param aItem Script line containing parameters.
       
  2138     * @return Symbian OS error code.
       
  2139     */
       
  2140     virtual TInt TestMultiLineDataQdlgNewLFourL( CStifItemParser& aItem );
       
  2141     
       
  2142     /**
       
  2143     * TestMultiLineDataQdlgNewLFiveL test method for test the NewL.
       
  2144     * @since S60 5.0
       
  2145     * @param aItem Script line containing parameters.
       
  2146     * @return Symbian OS error code.
       
  2147     */
       
  2148     virtual TInt TestMultiLineDataQdlgNewLFiveL( CStifItemParser& aItem );
       
  2149     
       
  2150     /**
       
  2151     * TestMultiLineDataQdlgNewLSixL test method for test the NewL.
       
  2152     * @since S60 5.0
       
  2153     * @param aItem Script line containing parameters.
       
  2154     * @return Symbian OS error code.
       
  2155     */
       
  2156     virtual TInt TestMultiLineDataQdlgNewLSixL( CStifItemParser& aItem );
       
  2157     
       
  2158     /**
       
  2159     * TestMultiLineDataQdlgNewLSevenL test method for test the NewL.
       
  2160     * @since S60 5.0
       
  2161     * @param aItem Script line containing parameters.
       
  2162     * @return Symbian OS error code.
       
  2163     */
       
  2164     virtual TInt TestMultiLineDataQdlgNewLSevenL( CStifItemParser& aItem );
       
  2165     
       
  2166     /**
       
  2167     * TestMultiLineDataQdlgNewLEightL test method for test the NewL.
       
  2168     * @since S60 5.0
       
  2169     * @param aItem Script line containing parameters.
       
  2170     * @return Symbian OS error code.
       
  2171     */
       
  2172     virtual TInt TestMultiLineDataQdlgNewLEightL( CStifItemParser& aItem );
       
  2173     
       
  2174     /**
       
  2175     * TestMultiLineDataQdlgDestructorL test method for test the Destructor.
       
  2176     * @since S60 5.0
       
  2177     * @param aItem Script line containing parameters.
       
  2178     * @return Symbian OS error code.
       
  2179     */
       
  2180     virtual TInt TestMultiLineDataQdlgDestructorL( CStifItemParser& aItem );
       
  2181     
       
  2182     /**
       
  2183     * TestMultiLineDataQdlgConstructorOneL test method for test the Constructor.
       
  2184     * @since S60 5.0
       
  2185     * @param aItem Script line containing parameters.
       
  2186     * @return Symbian OS error code.
       
  2187     */
       
  2188     virtual TInt TestMultiLineDataQdlgConstructorOneL( CStifItemParser& aItem );
       
  2189     
       
  2190     /**
       
  2191     * TestFloatingQdlgNumberTwoL test method for test the Number.
       
  2192     * @since S60 5.0
       
  2193     * @param aItem Script line containing parameters.
       
  2194     * @return Symbian OS error code.
       
  2195     */
       
  2196     virtual TInt TestMultiLineDataQdlgSetPromptL( CStifItemParser& aItem );
       
  2197     
       
  2198     /**
       
  2199     * TestFloatingQdlgNumberTwoL test method for test the Number.
       
  2200     * @since S60 5.0
       
  2201     * @param aItem Script line containing parameters.
       
  2202     * @return Symbian OS error code.
       
  2203     */
       
  2204     virtual TInt TestMultiLineDataQdlgSetMaxLengthOfFirstEditorL( CStifItemParser& aItem );
       
  2205     
       
  2206     /**
       
  2207     * TestFloatingQdlgNumberTwoL test method for test the Number.
       
  2208     * @since S60 5.0
       
  2209     * @param aItem Script line containing parameters.
       
  2210     * @return Symbian OS error code.
       
  2211     */
       
  2212     virtual TInt TestMultiLineDataQdlgSetMaxLengthOfSecondEditorL( CStifItemParser& aItem );
       
  2213     
       
  2214     /**
       
  2215     * TestFloatingQdlgNumberTwoL test method for test the Number.
       
  2216     * @since S60 5.0
       
  2217     * @param aItem Script line containing parameters.
       
  2218     * @return Symbian OS error code.
       
  2219     */
       
  2220     virtual TInt TestMultiLineDataQdlgHandlePointerEventL( CStifItemParser& aItem );
       
  2221     
       
  2222     /**
       
  2223     * TestMultiLineDataQdlgOkToExitL test method for test the OkToExitL.
       
  2224     * @since S60 5.0
       
  2225     * @param aItem Script line containing parameters.
       
  2226     * @return Symbian OS error code.
       
  2227     */
       
  2228     virtual TInt TestMultiLineDataQdlgOkToExitL( CStifItemParser& aItem );
       
  2229     
       
  2230     /**
       
  2231     * TestMultiLineDataQdlgPreLayoutDynInitL test method for test the PreLayoutDynInitL.
       
  2232     * @since S60 5.0
       
  2233     * @param aItem Script line containing parameters.
       
  2234     * @return Symbian OS error code.
       
  2235     */
       
  2236     virtual TInt TestMultiLineDataQdlgPreLayoutDynInitL( CStifItemParser& aItem );
       
  2237     
       
  2238     /**
       
  2239     * TestMultiLineDataQdlgHandleResourceChangeL test method for test the HandleResourceChange.
       
  2240     * @since S60 5.0
       
  2241     * @param aItem Script line containing parameters.
       
  2242     * @return Symbian OS error code.
       
  2243     */
       
  2244     virtual TInt TestMultiLineDataQdlgHandleResourceChangeL( CStifItemParser& aItem );
       
  2245     
       
  2246     /**
       
  2247     * TestMultiLineDataQdlgUpdateLeftSoftKeyL test method for test the UpdateLeftSoftKey.
       
  2248     * @since S60 5.0
       
  2249     * @param aItem Script line containing parameters.
       
  2250     * @return Symbian OS error code.
       
  2251     */
       
  2252     virtual TInt TestMultiLineDataQdlgUpdateLeftSoftKeyL( CStifItemParser& aItem );
       
  2253     
       
  2254     /**
       
  2255     * TestMultiLineDataQdlgDoSetPromptL test method for test the DoSetPromptL.
       
  2256     * @since S60 5.0
       
  2257     * @param aItem Script line containing parameters.
       
  2258     * @return Symbian OS error code.
       
  2259     */
       
  2260     virtual TInt TestMultiLineDataQdlgDoSetPromptL( CStifItemParser& aItem );
       
  2261     
       
  2262     /**
       
  2263     * TestMultiLineDataQdlgNeedToDismissQueryL test method for test the DismissQuery.
       
  2264     * @since S60 5.0
       
  2265     * @param aItem Script line containing parameters.
       
  2266     * @return Symbian OS error code.
       
  2267     */
       
  2268     virtual TInt TestMultiLineDataQdlgNeedToDismissQueryL( CStifItemParser& aItem );
       
  2269     
       
  2270     /**
       
  2271     * TestMultiLineDataQdlgFirstControlL test method for test the FirstControl.
       
  2272     * @since S60 5.0
       
  2273     * @param aItem Script line containing parameters.
       
  2274     * @return Symbian OS error code.
       
  2275     */
       
  2276     virtual TInt TestMultiLineDataQdlgFirstControlL( CStifItemParser& aItem );
       
  2277     
       
  2278     /**
       
  2279     * TestMultiLineDataQdlgSecondControlL test method for test the SecondControl.
       
  2280     * @since S60 5.0
       
  2281     * @param aItem Script line containing parameters.
       
  2282     * @return Symbian OS error code.
       
  2283     */
       
  2284     virtual TInt TestMultiLineDataQdlgSecondControlL( CStifItemParser& aItem );
       
  2285     
       
  2286     /**
       
  2287     * TestMultiLineDataQdlgQueryControlL test method for test the QueryControl.
       
  2288     * @since S60 5.0
       
  2289     * @param aItem Script line containing parameters.
       
  2290     * @return Symbian OS error code.
       
  2291     */
       
  2292     virtual TInt TestMultiLineDataQdlgQueryControlL( CStifItemParser& aItem );
       
  2293     
       
  2294     /**
       
  2295     * TestMultiLineDataQdlgQueryHeadingL test method for test the QueryHeading.
       
  2296     * @since S60 5.0
       
  2297     * @param aItem Script line containing parameters.
       
  2298     * @return Symbian OS error code.
       
  2299     */
       
  2300     virtual TInt TestMultiLineDataQdlgQueryHeadingL( CStifItemParser& aItem );
       
  2301     
       
  2302     /**
       
  2303     * TestMultiLineDataSecondPromptL test method for test the SecondPrompt.
       
  2304     * @since S60 5.0
       
  2305     * @param aItem Script line containing parameters.
       
  2306     * @return Symbian OS error code.
       
  2307     */
       
  2308     virtual TInt TestMultiLineDataSecondPromptL( CStifItemParser& aItem );
       
  2309     
       
  2310     /**
       
  2311     * TestMultiLineDataQdlgConstructorTwoL test method for test the Constructor.
       
  2312     * @since S60 5.0
       
  2313     * @param aItem Script line containing parameters.
       
  2314     * @return Symbian OS error code.
       
  2315     */
       
  2316     virtual TInt TestMultiLineDataQdlgConstructorTwoL( CStifItemParser& aItem );
       
  2317     
       
  2318     /**
       
  2319     * TestMultiLineDataQdlgConstructorThreeL test method for test the Constructor.
       
  2320     * @since S60 5.0
       
  2321     * @param aItem Script line containing parameters.
       
  2322     * @return Symbian OS error code.
       
  2323     */
       
  2324     virtual TInt TestMultiLineDataQdlgConstructorThreeL( CStifItemParser& aItem );
       
  2325     
       
  2326     /**
       
  2327     * TestMultiLineDataQdlgConstructorFourL test method for test the Constructor.
       
  2328     * @since S60 5.0
       
  2329     * @param aItem Script line containing parameters.
       
  2330     * @return Symbian OS error code.
       
  2331     */
       
  2332     virtual TInt TestMultiLineDataQdlgConstructorFourL( CStifItemParser& aItem );
       
  2333     
       
  2334     /**
       
  2335     * TestMultiLineDataQdlgConstructorFiveL test method for test the Constructor.
       
  2336     * @since S60 5.0
       
  2337     * @param aItem Script line containing parameters.
       
  2338     * @return Symbian OS error code.
       
  2339     */
       
  2340     virtual TInt TestMultiLineDataQdlgConstructorFiveL( CStifItemParser& aItem );
       
  2341     
       
  2342     /**
       
  2343     * TestMultiLineDataQdlgConstructorSixL test method for test the Constructor.
       
  2344     * @since S60 5.0
       
  2345     * @param aItem Script line containing parameters.
       
  2346     * @return Symbian OS error code.
       
  2347     */
       
  2348     virtual TInt TestMultiLineDataQdlgConstructorSixL( CStifItemParser& aItem );
       
  2349     
       
  2350     /**
       
  2351     * TestMultiLineDataQdlgConstructorSevenL test method for test the Constructor.
       
  2352     * @since S60 5.0
       
  2353     * @param aItem Script line containing parameters.
       
  2354     * @return Symbian OS error code.
       
  2355     */
       
  2356     virtual TInt TestMultiLineDataQdlgConstructorSevenL( CStifItemParser& aItem );
       
  2357     
       
  2358     /**
       
  2359     * TestMultiLineDataQdlgConstructorEightL test method for test the Constructor.
       
  2360     * @since S60 5.0
       
  2361     * @param aItem Script line containing parameters.
       
  2362     * @return Symbian OS error code.
       
  2363     */
       
  2364     virtual TInt TestMultiLineDataQdlgConstructorEightL( CStifItemParser& aItem );
       
  2365     
       
  2366 //CAknIpAddressQueryDialog
       
  2367     /**
       
  2368     * TestIpAddressQdlgNewL test method for test the NewL.
       
  2369     * @since S60 5.0
       
  2370     * @param aItem Script line containing parameters.
       
  2371     * @return Symbian OS error code.
       
  2372     */
       
  2373     virtual TInt TestIpAddressQdlgNewL( CStifItemParser& aItem );
       
  2374     
       
  2375     /**
       
  2376     * TestIpAddressQdlgDestructorL test method for test the Destructor.
       
  2377     * @since S60 5.0
       
  2378     * @param aItem Script line containing parameters.
       
  2379     * @return Symbian OS error code.
       
  2380     */
       
  2381     virtual TInt TestIpAddressQdlgDestructorL( CStifItemParser& aItem );
       
  2382     
       
  2383     /**
       
  2384     * TestIpAddressQdlgSetMinimumAndMaximumL test method for test the SetMinimumAndMaximum.
       
  2385     * @since S60 5.0
       
  2386     * @param aItem Script line containing parameters.
       
  2387     * @return Symbian OS error code.
       
  2388     */
       
  2389     virtual TInt TestIpAddressQdlgSetMinimumAndMaximumL( CStifItemParser& aItem );
       
  2390     
       
  2391     /**
       
  2392     * TestIpAddressQdlgNeedToDismissQueryL test method for test the NeedToDismissQuery.
       
  2393     * @since S60 5.0
       
  2394     * @param aItem Script line containing parameters.
       
  2395     * @return Symbian OS error code.
       
  2396     */
       
  2397     virtual TInt TestIpAddressQdlgNeedToDismissQueryL( CStifItemParser& aItem );
       
  2398     
       
  2399     /**
       
  2400     * TestIpAddressQdlgQueryControlL test method for test the QueryControl.
       
  2401     * @since S60 5.0
       
  2402     * @param aItem Script line containing parameters.
       
  2403     * @return Symbian OS error code.
       
  2404     */
       
  2405     virtual TInt TestIpAddressQdlgQueryControlL( CStifItemParser& aItem );
       
  2406     
       
  2407     /**
       
  2408     * TestIpAddressQdlgSetSizeAndPositionL test method for test the SetSizeAndPosition.
       
  2409     * @since S60 5.0
       
  2410     * @param aItem Script line containing parameters.
       
  2411     * @return Symbian OS error code.
       
  2412     */
       
  2413     virtual TInt TestIpAddressQdlgSetSizeAndPositionL( CStifItemParser& aItem );
       
  2414     
       
  2415     /**
       
  2416     * TestIpAddressQdlgPreLayoutDynInitL test method for test the PreLayoutDynInitL.
       
  2417     * @since S60 5.0
       
  2418     * @param aItem Script line containing parameters.
       
  2419     * @return Symbian OS error code.
       
  2420     */
       
  2421     virtual TInt TestIpAddressQdlgPreLayoutDynInitL( CStifItemParser& aItem );
       
  2422     
       
  2423     /**
       
  2424     * TestIpAddressQdlgPostLayoutDynInitL test method for test the PostLayoutDynInitL.
       
  2425     * @since S60 5.0
       
  2426     * @param aItem Script line containing parameters.
       
  2427     * @return Symbian OS error code.
       
  2428     */
       
  2429     virtual TInt TestIpAddressQdlgPostLayoutDynInitL( CStifItemParser& aItem );
       
  2430     
       
  2431     /**
       
  2432     * TestIpAddressQdlgDoSetPromptL test method for test the DoSetPrompt.
       
  2433     * @since S60 5.0
       
  2434     * @param aItem Script line containing parameters.
       
  2435     * @return Symbian OS error code.
       
  2436     */
       
  2437     virtual TInt TestIpAddressQdlgDoSetPromptL( CStifItemParser& aItem );
       
  2438     
       
  2439     /**
       
  2440     * TestIpAddressQdlgOkToExitL test method for test the OkToExitL.
       
  2441     * @since S60 5.0
       
  2442     * @param aItem Script line containing parameters.
       
  2443     * @return Symbian OS error code.
       
  2444     */
       
  2445     virtual TInt TestIpAddressQdlgOkToExitL( CStifItemParser& aItem );
       
  2446     
       
  2447     /**
       
  2448     * TestIpAddressQdlgUpdateLeftSoftKeyL test method for test the UpdateLeftSoftKey.
       
  2449     * @since S60 5.0
       
  2450     * @param aItem Script line containing parameters.
       
  2451     * @return Symbian OS error code.
       
  2452     */
       
  2453     virtual TInt TestIpAddressQdlgUpdateLeftSoftKeyL( CStifItemParser& aItem );
       
  2454     
       
  2455     /**
       
  2456     * TestIpAddressQdlgInetAddrOneL test method for test the InetAddr.
       
  2457     * @since S60 5.0
       
  2458     * @param aItem Script line containing parameters.
       
  2459     * @return Symbian OS error code.
       
  2460     */
       
  2461     virtual TInt TestIpAddressQdlgInetAddrOneL( CStifItemParser& aItem );
       
  2462     
       
  2463     /**
       
  2464     * TestIpAddressQdlgInetAddrTwoL test method for test the InetAddr.
       
  2465     * @since S60 5.0
       
  2466     * @param aItem Script line containing parameters.
       
  2467     * @return Symbian OS error code.
       
  2468     */
       
  2469     virtual TInt TestIpAddressQdlgInetAddrTwoL( CStifItemParser& aItem );
       
  2470     
       
  2471 //CAknFixedPointQueryDialog
       
  2472     /**
       
  2473     * TestFixedPointQdlgNewL test method for test the NewL.
       
  2474     * @since S60 5.0
       
  2475     * @param aItem Script line containing parameters.
       
  2476     * @return Symbian OS error code.
       
  2477     */
       
  2478     virtual TInt TestFixedPointQdlgNewL( CStifItemParser& aItem );
       
  2479     
       
  2480     /**
       
  2481     * TestFixedPointQdlgDestructorL test method for test the Destructor.
       
  2482     * @since S60 5.0
       
  2483     * @param aItem Script line containing parameters.
       
  2484     * @return Symbian OS error code.
       
  2485     */
       
  2486     virtual TInt TestFixedPointQdlgDestructorL( CStifItemParser& aItem );
       
  2487     
       
  2488     /**
       
  2489     * TestFixedPointQdlgSetMinimumAndMaximumL test method for test the SetMinimumAndMaximum.
       
  2490     * @since S60 5.0
       
  2491     * @param aItem Script line containing parameters.
       
  2492     * @return Symbian OS error code.
       
  2493     */
       
  2494     virtual TInt TestFixedPointQdlgSetMinimumAndMaximumL( CStifItemParser& aItem );
       
  2495     
       
  2496     /**
       
  2497     * TestFixedPointQdlgNeedToDismissQueryL test method for test the NeedToDismissQuery.
       
  2498     * @since S60 5.0
       
  2499     * @param aItem Script line containing parameters.
       
  2500     * @return Symbian OS error code.
       
  2501     */
       
  2502     virtual TInt TestFixedPointQdlgNeedToDismissQueryL( CStifItemParser& aItem );
       
  2503     
       
  2504     /**
       
  2505     * TestFixedPointQdlgQueryControlL test method for test the QueryControl.
       
  2506     * @since S60 5.0
       
  2507     * @param aItem Script line containing parameters.
       
  2508     * @return Symbian OS error code.
       
  2509     */
       
  2510     virtual TInt TestFixedPointQdlgQueryControlL( CStifItemParser& aItem );
       
  2511     
       
  2512     /**
       
  2513     * TestFixedPointQdlgSetSizeAndPositionL test method for test the SetSizeAndPosition.
       
  2514     * @since S60 5.0
       
  2515     * @param aItem Script line containing parameters.
       
  2516     * @return Symbian OS error code.
       
  2517     */
       
  2518     virtual TInt TestFixedPointQdlgSetSizeAndPositionL( CStifItemParser& aItem );
       
  2519     
       
  2520     /**
       
  2521     * TestFixedPointQdlgPreLayoutDynInitL test method for test the PreLayoutDynInitL.
       
  2522     * @since S60 5.0
       
  2523     * @param aItem Script line containing parameters.
       
  2524     * @return Symbian OS error code.
       
  2525     */
       
  2526     virtual TInt TestFixedPointQdlgPreLayoutDynInitL( CStifItemParser& aItem );
       
  2527     
       
  2528     /**
       
  2529     * TestFixedPointQdlgPostLayoutDynInitL test method for test the PostLayoutDynInitL.
       
  2530     * @since S60 5.0
       
  2531     * @param aItem Script line containing parameters.
       
  2532     * @return Symbian OS error code.
       
  2533     */
       
  2534     virtual TInt TestFixedPointQdlgPostLayoutDynInitL( CStifItemParser& aItem );
       
  2535     
       
  2536     /**
       
  2537     * TestFixedPointQdlgDoSetPromptL test method for test the DoSetPromptL.
       
  2538     * @since S60 5.0
       
  2539     * @param aItem Script line containing parameters.
       
  2540     * @return Symbian OS error code.
       
  2541     */
       
  2542     virtual TInt TestFixedPointQdlgDoSetPromptL( CStifItemParser& aItem );
       
  2543     
       
  2544     /**
       
  2545     * TestFixedPointQdlgOkToExitL test method for test the OkToExitL.
       
  2546     * @since S60 5.0
       
  2547     * @param aItem Script line containing parameters.
       
  2548     * @return Symbian OS error code.
       
  2549     */
       
  2550     virtual TInt TestFixedPointQdlgOkToExitL( CStifItemParser& aItem );
       
  2551     
       
  2552     /**
       
  2553     * TestFixedPointQdlgUpdateLeftSoftKeyL test method for test the UpdateLeftSoftKeyL.
       
  2554     * @since S60 5.0
       
  2555     * @param aItem Script line containing parameters.
       
  2556     * @return Symbian OS error code.
       
  2557     */
       
  2558     virtual TInt TestFixedPointQdlgUpdateLeftSoftKeyL( CStifItemParser& aItem );
       
  2559     
       
  2560     /**
       
  2561     * TestFixedPointQdlgNumberOneL test method for test the Number.
       
  2562     * @since S60 5.0
       
  2563     * @param aItem Script line containing parameters.
       
  2564     * @return Symbian OS error code.
       
  2565     */
       
  2566     virtual TInt TestFixedPointQdlgNumberOneL( CStifItemParser& aItem );
       
  2567     
       
  2568     /**
       
  2569     * TestFixedPointQdlgNumberTwoL test method for test the Number.
       
  2570     * @since S60 5.0
       
  2571     * @param aItem Script line containing parameters.
       
  2572     * @return Symbian OS error code.
       
  2573     */
       
  2574     virtual TInt TestFixedPointQdlgNumberTwoL( CStifItemParser& aItem );
       
  2575     
       
  2576 //CAknMultiLineIpQueryDialog
       
  2577     /**
       
  2578     * TestMultiLineIpQdlgNewL test method for test the NewL.
       
  2579     * @since S60 5.0
       
  2580     * @param aItem Script line containing parameters.
       
  2581     * @return Symbian OS error code.
       
  2582     */
       
  2583     virtual TInt TestMultiLineIpQdlgNewL( CStifItemParser& aItem );
       
  2584     
       
  2585     /**
       
  2586     * TestMultiLineIpQdlgDestructorL test method for test the Destructor.
       
  2587     * @since S60 5.0
       
  2588     * @param aItem Script line containing parameters.
       
  2589     * @return Symbian OS error code.
       
  2590     */
       
  2591     virtual TInt TestMultiLineIpQdlgDestructorL( CStifItemParser& aItem );
       
  2592     
       
  2593     /**
       
  2594     * TestMultiLineIpQdlgSetPromptL test method for test the SetPrompt.
       
  2595     * @since S60 5.0
       
  2596     * @param aItem Script line containing parameters.
       
  2597     * @return Symbian OS error code.
       
  2598     */
       
  2599     virtual TInt TestMultiLineIpQdlgSetPromptL( CStifItemParser& aItem );
       
  2600     
       
  2601     /**
       
  2602     * TestMultiLineIpQdlgSetMaxLengthOfFirstEditorL test method for test the SetMaxLengthOfFirstEditorL.
       
  2603     * @since S60 5.0
       
  2604     * @param aItem Script line containing parameters.
       
  2605     * @return Symbian OS error code.
       
  2606     */
       
  2607     virtual TInt TestMultiLineIpQdlgSetMaxLengthOfFirstEditorL( CStifItemParser& aItem );
       
  2608     
       
  2609     /**
       
  2610     * TestMultiLineIpQdlgSetMaxLengthOfSecondEditorL test method for test the SetMaxLengthOfSecondEditorL.
       
  2611     * @since S60 5.0
       
  2612     * @param aItem Script line containing parameters.
       
  2613     * @return Symbian OS error code.
       
  2614     */
       
  2615     virtual TInt TestMultiLineIpQdlgSetMaxLengthOfSecondEditorL( CStifItemParser& aItem );
       
  2616     
       
  2617     /**
       
  2618     * TestMultiLineIpQdlgOkToExitL test method for test the OkToExitL.
       
  2619     * @since S60 5.0
       
  2620     * @param aItem Script line containing parameters.
       
  2621     * @return Symbian OS error code.
       
  2622     */
       
  2623     virtual TInt TestMultiLineIpQdlgOkToExitL( CStifItemParser& aItem );
       
  2624     
       
  2625     /**
       
  2626     * TestMultiLineIpQdlgPreLayoutDynInitL test method for test the PreLayoutDynInitL.
       
  2627     * @since S60 5.0
       
  2628     * @param aItem Script line containing parameters.
       
  2629     * @return Symbian OS error code.
       
  2630     */
       
  2631     virtual TInt TestMultiLineIpQdlgPreLayoutDynInitL( CStifItemParser& aItem );
       
  2632     
       
  2633     /**
       
  2634     * TestMultiLineIpQdlgHandleResourceChangeL test method for test the HandleResourceChange.
       
  2635     * @since S60 5.0
       
  2636     * @param aItem Script line containing parameters.
       
  2637     * @return Symbian OS error code.
       
  2638     */
       
  2639     virtual TInt TestMultiLineIpQdlgHandleResourceChangeL( CStifItemParser& aItem );
       
  2640     
       
  2641     /**
       
  2642     * TestMultiLineIpQdlgUpdateLeftSoftKeyL test method for test the UpdateLeftSoftKeyL.
       
  2643     * @since S60 5.0
       
  2644     * @param aItem Script line containing parameters.
       
  2645     * @return Symbian OS error code.
       
  2646     */
       
  2647     virtual TInt TestMultiLineIpQdlgUpdateLeftSoftKeyL( CStifItemParser& aItem );
       
  2648     
       
  2649     /**
       
  2650     * TestMultiLineIpQdlgDoSetPromptL test method for test the DoSetPrompt.
       
  2651     * @since S60 5.0
       
  2652     * @param aItem Script line containing parameters.
       
  2653     * @return Symbian OS error code.
       
  2654     */
       
  2655     virtual TInt TestMultiLineIpQdlgDoSetPromptL( CStifItemParser& aItem );
       
  2656     
       
  2657     /**
       
  2658     * TestMultiLineIpQdlgNeedToDismissQueryL test method for test the NeedToDismissQuery.
       
  2659     * @since S60 5.0
       
  2660     * @param aItem Script line containing parameters.
       
  2661     * @return Symbian OS error code.
       
  2662     */
       
  2663     virtual TInt TestMultiLineIpQdlgNeedToDismissQueryL( CStifItemParser& aItem );
       
  2664     
       
  2665     /**
       
  2666     * TestMultiLineIpQdlgFirstControlL test method for test the FirstControl.
       
  2667     * @since S60 5.0
       
  2668     * @param aItem Script line containing parameters.
       
  2669     * @return Symbian OS error code.
       
  2670     */
       
  2671     virtual TInt TestMultiLineIpQdlgFirstControlL( CStifItemParser& aItem );
       
  2672     
       
  2673     /**
       
  2674     * TestMultiLineIpQdlgSecondControlL test method for test the SecondControl.
       
  2675     * @since S60 5.0
       
  2676     * @param aItem Script line containing parameters.
       
  2677     * @return Symbian OS error code.
       
  2678     */
       
  2679     virtual TInt TestMultiLineIpQdlgSecondControlL( CStifItemParser& aItem );
       
  2680     
       
  2681     /**
       
  2682     * TestMultiLineIpQdlgQueryControlL test method for test the QueryControl.
       
  2683     * @since S60 5.0
       
  2684     * @param aItem Script line containing parameters.
       
  2685     * @return Symbian OS error code.
       
  2686     */
       
  2687     virtual TInt TestMultiLineIpQdlgQueryControlL( CStifItemParser& aItem );
       
  2688     
       
  2689     /**
       
  2690     * TestMultiLineIpQdlgSecondPromptL test method for test the SecondPrompt.
       
  2691     * @since S60 5.0
       
  2692     * @param aItem Script line containing parameters.
       
  2693     * @return Symbian OS error code.
       
  2694     */
       
  2695     virtual TInt TestMultiLineIpQdlgSecondPromptL( CStifItemParser& aItem );
       
  2696     
       
  2697 //AknQueryValue.h
       
  2698         //CAknQueryValue
       
  2699     /**
       
  2700     * TestQVSetQueryModeL test method for test the SetQueryModeL.
       
  2701     * @since S60 5.0
       
  2702     * @param aItem Script line containing parameters.
       
  2703     * @return Symbian OS error code.
       
  2704     */
       
  2705     virtual TInt TestQVSetQueryModeL( CStifItemParser& aItem );
       
  2706     
       
  2707     /**
       
  2708     * TestQVSetSettingPageResourceIdsL test method for test the SettingPageResourceIdsL.
       
  2709     * @since S60 5.0
       
  2710     * @param aItem Script line containing parameters.
       
  2711     * @return Symbian OS error code.
       
  2712     */
       
  2713     virtual TInt TestQVSetSettingPageResourceIdsL( CStifItemParser& aItem );
       
  2714     
       
  2715     /**
       
  2716     * TestQVSetAutoAppendL test method for test the SetAutoAppendL.
       
  2717     * @since S60 5.0
       
  2718     * @param aItem Script line containing parameters.
       
  2719     * @return Symbian OS error code.
       
  2720     */
       
  2721     virtual TInt TestQVSetAutoAppendL( CStifItemParser& aItem );
       
  2722     
       
  2723     /**
       
  2724     * TestQVAppendValueIfNewL test method for test the AppendValueIfNewL.
       
  2725     * @since S60 5.0
       
  2726     * @param aItem Script line containing parameters.
       
  2727     * @return Symbian OS error code.
       
  2728     */
       
  2729     virtual TInt TestQVAppendValueIfNewL( CStifItemParser& aItem );
       
  2730     
       
  2731 //CAknQueryValueDate
       
  2732     /**
       
  2733     * TestQVDNewL test method for test the NewL.
       
  2734     * @since S60 5.0
       
  2735     * @param aItem Script line containing parameters.
       
  2736     * @return Symbian OS error code.
       
  2737     */
       
  2738     virtual TInt TestQVDNewL( CStifItemParser& aItem );
       
  2739     
       
  2740     /**
       
  2741     * TestQVDNewLCL test method for test the NewLC.
       
  2742     * @since S60 5.0
       
  2743     * @param aItem Script line containing parameters.
       
  2744     * @return Symbian OS error code.
       
  2745     */
       
  2746     virtual TInt TestQVDNewLCL( CStifItemParser& aItem );
       
  2747     
       
  2748     /**
       
  2749     * TestQVDDestructorL test method for test the Destructor.
       
  2750     * @since S60 5.0
       
  2751     * @param aItem Script line containing parameters.
       
  2752     * @return Symbian OS error code.
       
  2753     */
       
  2754     virtual TInt TestQVDDestructorL( CStifItemParser& aItem );
       
  2755     
       
  2756     /**
       
  2757     * TestQVDSetArrayL test method for test the SetArrayL.
       
  2758     * @since S60 5.0
       
  2759     * @param aItem Script line containing parameters.
       
  2760     * @return Symbian OS error code.
       
  2761     */
       
  2762     virtual TInt TestQVDSetArrayL( CStifItemParser& aItem );
       
  2763     
       
  2764     /**
       
  2765     * TestQVDSetQueryCaptionL test method for test the SetQueryCaption.
       
  2766     * @since S60 5.0
       
  2767     * @param aItem Script line containing parameters.
       
  2768     * @return Symbian OS error code.
       
  2769     */
       
  2770     virtual TInt TestQVDSetQueryCaptionL( CStifItemParser& aItem );
       
  2771     
       
  2772     /**
       
  2773     * TestQVDValueL test method for test the Value.
       
  2774     * @since S60 5.0
       
  2775     * @param aItem Script line containing parameters.
       
  2776     * @return Symbian OS error code.
       
  2777     */
       
  2778     virtual TInt TestQVDValueL( CStifItemParser& aItem );
       
  2779     
       
  2780     /**
       
  2781     * TestQVDMdcArrayL test method for test the MdcArrayL.
       
  2782     * @since S60 5.0
       
  2783     * @param aItem Script line containing parameters.
       
  2784     * @return Symbian OS error code.
       
  2785     */
       
  2786     virtual TInt TestQVDMdcArrayL( CStifItemParser& aItem );
       
  2787     
       
  2788     /**
       
  2789     * TestQVDCurrentValueTextLCL test method for test the CurrentValueTextLC.
       
  2790     * @since S60 5.0
       
  2791     * @param aItem Script line containing parameters.
       
  2792     * @return Symbian OS error code.
       
  2793     */
       
  2794     virtual TInt TestQVDCurrentValueTextLCL( CStifItemParser& aItem );
       
  2795     
       
  2796     /**
       
  2797     * TestQVDCurrentValueIndexL test method for test the CurrentValueIndex.
       
  2798     * @since S60 5.0
       
  2799     * @param aItem Script line containing parameters.
       
  2800     * @return Symbian OS error code.
       
  2801     */
       
  2802     virtual TInt TestQVDCurrentValueIndexL( CStifItemParser& aItem );
       
  2803     
       
  2804     /**
       
  2805     * TestQVDSetCurrentValueIndexL test method for test the SetCurrentValueIndex.
       
  2806     * @since S60 5.0
       
  2807     * @param aItem Script line containing parameters.
       
  2808     * @return Symbian OS error code.
       
  2809     */
       
  2810     virtual TInt TestQVDSetCurrentValueIndexL( CStifItemParser& aItem );
       
  2811     
       
  2812     /**
       
  2813     * TestQVDCreateEditorL test method for test the CreateEditor.
       
  2814     * @since S60 5.0
       
  2815     * @param aItem Script line containing parameters.
       
  2816     * @return Symbian OS error code.
       
  2817     */
       
  2818     virtual TInt TestQVDCreateEditorL( CStifItemParser& aItem );
       
  2819     
       
  2820 //CAknQueryValueDateArray
       
  2821     /**
       
  2822     * TestQVDANewL test method for test the NewL.
       
  2823     * @since S60 5.0
       
  2824     * @param aItem Script line containing parameters.
       
  2825     * @return Symbian OS error code.
       
  2826     */
       
  2827     virtual TInt TestQVDANewL( CStifItemParser& aItem );
       
  2828     
       
  2829     /**
       
  2830     * TestQVDANewLC test method for test the NewLC.
       
  2831     * @since S60 5.0
       
  2832     * @param aItem Script line containing parameters.
       
  2833     * @return Symbian OS error code.
       
  2834     */
       
  2835     virtual TInt TestQVDANewLCL( CStifItemParser& aItem );
       
  2836     
       
  2837     /**
       
  2838     * TestQVDADestructorL test method for test the Destructor.
       
  2839     * @since S60 5.0
       
  2840     * @param aItem Script line containing parameters.
       
  2841     * @return Symbian OS error code.
       
  2842     */
       
  2843     virtual TInt TestQVDADestructorL( CStifItemParser& aItem );
       
  2844     
       
  2845     /**
       
  2846     * TestQVDASetArrayL test method for test the SetArray.
       
  2847     * @since S60 5.0
       
  2848     * @param aItem Script line containing parameters.
       
  2849     * @return Symbian OS error code.
       
  2850     */
       
  2851     virtual TInt TestQVDASetArrayL( CStifItemParser& aItem );
       
  2852     
       
  2853     /**
       
  2854     * TestQVDAArrayL test method for test the Array.
       
  2855     * @since S60 5.0
       
  2856     * @param aItem Script line containing parameters.
       
  2857     * @return Symbian OS error code.
       
  2858     */
       
  2859     virtual TInt TestQVDAArrayL( CStifItemParser& aItem );
       
  2860     
       
  2861     /**
       
  2862     * TestQVDAFormatStringL test method for test the FormatStringL.
       
  2863     * @since S60 5.0
       
  2864     * @param aItem Script line containing parameters.
       
  2865     * @return Symbian OS error code.
       
  2866     */
       
  2867     virtual TInt TestQVDAFormatStringL( CStifItemParser& aItem );
       
  2868     
       
  2869     /**
       
  2870     * TestQVDAFormattedStringSizeOneL test method for test the FormattedStringSize.
       
  2871     * @since S60 5.0
       
  2872     * @param aItem Script line containing parameters.
       
  2873     * @return Symbian OS error code.
       
  2874     */
       
  2875     virtual TInt TestQVDAFormattedStringSizeOneL( CStifItemParser& aItem );
       
  2876     
       
  2877     /**
       
  2878     * TestQVDAFormattedStringSizeTwoL test method for test the FormattedStringSize.
       
  2879     * @since S60 5.0
       
  2880     * @param aItem Script line containing parameters.
       
  2881     * @return Symbian OS error code.
       
  2882     */
       
  2883     virtual TInt TestQVDAFormattedStringSizeTwoL( CStifItemParser& aItem );
       
  2884     
       
  2885     /**
       
  2886     * TestQVDAMdcaCountL test method for test the MdcaCount.
       
  2887     * @since S60 5.0
       
  2888     * @param aItem Script line containing parameters.
       
  2889     * @return Symbian OS error code.
       
  2890     */
       
  2891     virtual TInt TestQVDAMdcaCountL( CStifItemParser& aItem );
       
  2892     
       
  2893     /**
       
  2894     * TestQVDAMdcaPointL test method for test the MdcaPoint.
       
  2895     * @since S60 5.0
       
  2896     * @param aItem Script line containing parameters.
       
  2897     * @return Symbian OS error code.
       
  2898     */
       
  2899     virtual TInt TestQVDAMdcaPointL( CStifItemParser& aItem );
       
  2900     
       
  2901 //AknQueryValueDuration.h
       
  2902     /**
       
  2903     * TestQVDurationNewL test method for test the NewL.
       
  2904     * @since S60 5.0
       
  2905     * @param aItem Script line containing parameters.
       
  2906     * @return Symbian OS error code.
       
  2907     */
       
  2908     virtual TInt TestQVDurationNewL( CStifItemParser& aItem );
       
  2909     
       
  2910     /**
       
  2911     * TestQVDurationNewLC test method for test the NewLCL.
       
  2912     * @since S60 5.0
       
  2913     * @param aItem Script line containing parameters.
       
  2914     * @return Symbian OS error code.
       
  2915     */
       
  2916     virtual TInt TestQVDurationNewLCL( CStifItemParser& aItem );
       
  2917     
       
  2918     /**
       
  2919     * TestQVDurationDestructorL test method for test the Destructor.
       
  2920     * @since S60 5.0
       
  2921     * @param aItem Script line containing parameters.
       
  2922     * @return Symbian OS error code.
       
  2923     */
       
  2924     virtual TInt TestQVDurationDestructorL( CStifItemParser& aItem );
       
  2925     
       
  2926     /**
       
  2927     * TestQVDurationSetArrayL test method for test the SetArray.
       
  2928     * @since S60 5.0
       
  2929     * @param aItem Script line containing parameters.
       
  2930     * @return Symbian OS error code.
       
  2931     */
       
  2932     virtual TInt TestQVDurationSetArrayL( CStifItemParser& aItem );
       
  2933     
       
  2934     /**
       
  2935     * TestQVDurationSetQueryCaptionL test method for test the SetQueryCaption.
       
  2936     * @since S60 5.0
       
  2937     * @param aItem Script line containing parameters.
       
  2938     * @return Symbian OS error code.
       
  2939     */
       
  2940     virtual TInt TestQVDurationSetQueryCaptionL( CStifItemParser& aItem );
       
  2941     
       
  2942     /**
       
  2943     * TestQVDurationValueL test method for test the Value.
       
  2944     * @since S60 5.0
       
  2945     * @param aItem Script line containing parameters.
       
  2946     * @return Symbian OS error code.
       
  2947     */
       
  2948     virtual TInt TestQVDurationValueL( CStifItemParser& aItem );
       
  2949     
       
  2950     /**
       
  2951     * TestQVDurationMdcArrayL test method for test the MdcArray.
       
  2952     * @since S60 5.0
       
  2953     * @param aItem Script line containing parameters.
       
  2954     * @return Symbian OS error code.
       
  2955     */
       
  2956     virtual TInt TestQVDurationMdcArrayL( CStifItemParser& aItem );
       
  2957     
       
  2958     /**
       
  2959     * TestQVDurationCurrentValueTextLCL test method for test the CurrentValueTextLC.
       
  2960     * @since S60 5.0
       
  2961     * @param aItem Script line containing parameters.
       
  2962     * @return Symbian OS error code.
       
  2963     */
       
  2964     virtual TInt TestQVDurationCurrentValueTextLCL( CStifItemParser& aItem );
       
  2965     
       
  2966     /**
       
  2967     * TestQVDurationCurrentValueIndexL test method for test the CurrentValueIndex.
       
  2968     * @since S60 5.0
       
  2969     * @param aItem Script line containing parameters.
       
  2970     * @return Symbian OS error code.
       
  2971     */
       
  2972     virtual TInt TestQVDurationCurrentValueIndexL( CStifItemParser& aItem );
       
  2973     
       
  2974     /**
       
  2975     * TestQVDurationSetCurrentValueIndexL test method for test the SetCurrentValueIndex.
       
  2976     * @since S60 5.0
       
  2977     * @param aItem Script line containing parameters.
       
  2978     * @return Symbian OS error code.
       
  2979     */
       
  2980     virtual TInt TestQVDurationSetCurrentValueIndexL( CStifItemParser& aItem );
       
  2981     
       
  2982     /**
       
  2983     * TestQVDurationCreateEditorL test method for test the CreateEditorL.
       
  2984     * @since S60 5.0
       
  2985     * @param aItem Script line containing parameters.
       
  2986     * @return Symbian OS error code.
       
  2987     */
       
  2988     virtual TInt TestQVDurationCreateEditorL( CStifItemParser& aItem );
       
  2989     
       
  2990 //CAknQueryValueDurationArray
       
  2991     /**
       
  2992     * TestQVDArrayNewL test method for test the NewL.
       
  2993     * @since S60 5.0
       
  2994     * @param aItem Script line containing parameters.
       
  2995     * @return Symbian OS error code.
       
  2996     */
       
  2997     virtual TInt TestQVDArrayNewL( CStifItemParser& aItem );
       
  2998     
       
  2999     /**
       
  3000     * TestQVDArrayNewLCL test method for test the NewLC.
       
  3001     * @since S60 5.0
       
  3002     * @param aItem Script line containing parameters.
       
  3003     * @return Symbian OS error code.
       
  3004     */
       
  3005     virtual TInt TestQVDArrayNewLCL( CStifItemParser& aItem );
       
  3006     
       
  3007     /**
       
  3008     * TestQVDArrayDestructorL test method for test the Destructor.
       
  3009     * @since S60 5.0
       
  3010     * @param aItem Script line containing parameters.
       
  3011     * @return Symbian OS error code.
       
  3012     */
       
  3013     virtual TInt TestQVDArrayDestructorL( CStifItemParser& aItem );
       
  3014     
       
  3015     /**
       
  3016     * TestQVDArraySetArrayL test method for test the SetArray.
       
  3017     * @since S60 5.0
       
  3018     * @param aItem Script line containing parameters.
       
  3019     * @return Symbian OS error code.
       
  3020     */
       
  3021     virtual TInt TestQVDArraySetArrayL( CStifItemParser& aItem );
       
  3022     
       
  3023     /**
       
  3024     * TestQVDArrayArrayL test method for test the Array.
       
  3025     * @since S60 5.0
       
  3026     * @param aItem Script line containing parameters.
       
  3027     * @return Symbian OS error code.
       
  3028     */
       
  3029     virtual TInt TestQVDArrayArrayL( CStifItemParser& aItem );
       
  3030     
       
  3031     /**
       
  3032     * TestQVDArrayFormatStringL test method for test the FormatString.
       
  3033     * @since S60 5.0
       
  3034     * @param aItem Script line containing parameters.
       
  3035     * @return Symbian OS error code.
       
  3036     */
       
  3037     virtual TInt TestQVDArrayFormatStringL( CStifItemParser& aItem );
       
  3038     
       
  3039     /**
       
  3040     * TestQVDArrayFormattedStringSizeOneL test method for test the FormattedStringSize.
       
  3041     * @since S60 5.0
       
  3042     * @param aItem Script line containing parameters.
       
  3043     * @return Symbian OS error code.
       
  3044     */
       
  3045     virtual TInt TestQVDArrayFormattedStringSizeOneL( CStifItemParser& aItem );
       
  3046     
       
  3047     /**
       
  3048     * TestQVDArrayFormattedStringSizeTwoL test method for test the FormattedStringSize.
       
  3049     * @since S60 5.0
       
  3050     * @param aItem Script line containing parameters.
       
  3051     * @return Symbian OS error code.
       
  3052     */
       
  3053     virtual TInt TestQVDArrayFormattedStringSizeTwoL( CStifItemParser& aItem );
       
  3054     
       
  3055     /**
       
  3056     * TestQVDArrayFormatDurationL test method for test the FormatDuration.
       
  3057     * @since S60 5.0
       
  3058     * @param aItem Script line containing parameters.
       
  3059     * @return Symbian OS error code.
       
  3060     */
       
  3061     virtual TInt TestQVDArrayFormatDurationL( CStifItemParser& aItem );
       
  3062     
       
  3063     /**
       
  3064     * TestQVDArrayMdcaCountL test method for test the MdcaCount.
       
  3065     * @since S60 5.0
       
  3066     * @param aItem Script line containing parameters.
       
  3067     * @return Symbian OS error code.
       
  3068     */
       
  3069     virtual TInt TestQVDArrayMdcaCountL( CStifItemParser& aItem );
       
  3070     
       
  3071     /**
       
  3072     * TestQVDArrayMdcaPointL test method for test the MdcaPoint.
       
  3073     * @since S60 5.0
       
  3074     * @param aItem Script line containing parameters.
       
  3075     * @return Symbian OS error code.
       
  3076     */
       
  3077     virtual TInt TestQVDArrayMdcaPointL( CStifItemParser& aItem );
       
  3078     
       
  3079 //AknQueryValueNumber.h
       
  3080         //CAknQueryValueNumber
       
  3081     /**
       
  3082     * TestQVNumberNewL test method for test the NewL.
       
  3083     * @since S60 5.0
       
  3084     * @param aItem Script line containing parameters.
       
  3085     * @return Symbian OS error code.
       
  3086     */
       
  3087     virtual TInt TestQVNumberNewL( CStifItemParser& aItem );
       
  3088     
       
  3089     /**
       
  3090     * TestQVNumberNewLC test method for test the NewLC.
       
  3091     * @since S60 5.0
       
  3092     * @param aItem Script line containing parameters.
       
  3093     * @return Symbian OS error code.
       
  3094     */
       
  3095     virtual TInt TestQVNumberNewLC( CStifItemParser& aItem );
       
  3096     
       
  3097     /**
       
  3098     * TestQVNumberDestructorL test method for test the Destructor.
       
  3099     * @since S60 5.0
       
  3100     * @param aItem Script line containing parameters.
       
  3101     * @return Symbian OS error code.
       
  3102     */
       
  3103     virtual TInt TestQVNumberDestructorL( CStifItemParser& aItem );
       
  3104     
       
  3105     /**
       
  3106     * TestQVNumberSetArrayL test method for test the SetArrayL.
       
  3107     * @since S60 5.0
       
  3108     * @param aItem Script line containing parameters.
       
  3109     * @return Symbian OS error code.
       
  3110     */
       
  3111     virtual TInt TestQVNumberSetArrayL( CStifItemParser& aItem );
       
  3112     
       
  3113     /**
       
  3114     * TestQVNumberSetQueryCaptionL test method for test the SetQueryCaption.
       
  3115     * @since S60 5.0
       
  3116     * @param aItem Script line containing parameters.
       
  3117     * @return Symbian OS error code.
       
  3118     */
       
  3119     virtual TInt TestQVNumberSetQueryCaptionL( CStifItemParser& aItem );
       
  3120     
       
  3121     /**
       
  3122     * TestQVNumberValueL test method for test the Value.
       
  3123     * @since S60 5.0
       
  3124     * @param aItem Script line containing parameters.
       
  3125     * @return Symbian OS error code.
       
  3126     */
       
  3127     virtual TInt TestQVNumberValueL( CStifItemParser& aItem );
       
  3128     
       
  3129     /**
       
  3130     * TestQVNumberMdcArrayL test method for test the MdcArray.
       
  3131     * @since S60 5.0
       
  3132     * @param aItem Script line containing parameters.
       
  3133     * @return Symbian OS error code.
       
  3134     */
       
  3135     virtual TInt TestQVNumberMdcArrayL( CStifItemParser& aItem );
       
  3136     
       
  3137     /**
       
  3138     * TestQVNumberCurrentValueTextLCL test method for test the CurrentValueTextLC.
       
  3139     * @since S60 5.0
       
  3140     * @param aItem Script line containing parameters.
       
  3141     * @return Symbian OS error code.
       
  3142     */
       
  3143     virtual TInt TestQVNumberCurrentValueTextLCL( CStifItemParser& aItem );
       
  3144     
       
  3145     /**
       
  3146     * TestQVNumberCurrentValueIndexL test method for test the CurrentValueIndex.
       
  3147     * @since S60 5.0
       
  3148     * @param aItem Script line containing parameters.
       
  3149     * @return Symbian OS error code.
       
  3150     */
       
  3151     virtual TInt TestQVNumberCurrentValueIndexL( CStifItemParser& aItem );
       
  3152     
       
  3153     /**
       
  3154     * TestQVNumberSetCurrentValueIndexL test method for test the SetCurrentValueIndex.
       
  3155     * @since S60 5.0
       
  3156     * @param aItem Script line containing parameters.
       
  3157     * @return Symbian OS error code.
       
  3158     */
       
  3159     virtual TInt TestQVNumberSetCurrentValueIndexL( CStifItemParser& aItem );
       
  3160     
       
  3161     /**
       
  3162     * TestQVNumberCreateEditorL test method for test the CreateEditorL.
       
  3163     * @since S60 5.0
       
  3164     * @param aItem Script line containing parameters.
       
  3165     * @return Symbian OS error code.
       
  3166     */
       
  3167     virtual TInt TestQVNumberCreateEditorL( CStifItemParser& aItem );
       
  3168     
       
  3169 //CAknQueryValueNumberArray
       
  3170     /**
       
  3171     * TestQVNArrayNewL test method for test the NewL.
       
  3172     * @since S60 5.0
       
  3173     * @param aItem Script line containing parameters.
       
  3174     * @return Symbian OS error code.
       
  3175     */
       
  3176     virtual TInt TestQVNArrayNewL( CStifItemParser& aItem );
       
  3177     
       
  3178     /**
       
  3179     * TestQVNArrayNewLCL test method for test the NewLC.
       
  3180     * @since S60 5.0
       
  3181     * @param aItem Script line containing parameters.
       
  3182     * @return Symbian OS error code.
       
  3183     */
       
  3184     virtual TInt TestQVNArrayNewLCL( CStifItemParser& aItem );
       
  3185     
       
  3186     /**
       
  3187     * TestQVNArrayDestructorL test method for test the Destructor.
       
  3188     * @since S60 5.0
       
  3189     * @param aItem Script line containing parameters.
       
  3190     * @return Symbian OS error code.
       
  3191     */
       
  3192     virtual TInt TestQVNArrayDestructorL( CStifItemParser& aItem );
       
  3193     
       
  3194     /**
       
  3195     * TestQVNArraySetArrayL test method for test the SetArray.
       
  3196     * @since S60 5.0
       
  3197     * @param aItem Script line containing parameters.
       
  3198     * @return Symbian OS error code.
       
  3199     */
       
  3200     virtual TInt TestQVNArraySetArrayL( CStifItemParser& aItem );
       
  3201     
       
  3202     /**
       
  3203     * TestQVNArrayArrayL test method for test the Array.
       
  3204     * @since S60 5.0
       
  3205     * @param aItem Script line containing parameters.
       
  3206     * @return Symbian OS error code.
       
  3207     */
       
  3208     virtual TInt TestQVNArrayArrayL( CStifItemParser& aItem );
       
  3209     
       
  3210     /**
       
  3211     * FormatString test method for test the TestQVNArrayFormatStringL.
       
  3212     * @since S60 5.0
       
  3213     * @param aItem Script line containing parameters.
       
  3214     * @return Symbian OS error code.
       
  3215     */
       
  3216     virtual TInt TestQVNArrayFormatStringL( CStifItemParser& aItem );
       
  3217     
       
  3218     /**
       
  3219     * TestQVNArrayFormattedStringSizeOneL test method for test the FormattedStringSize.
       
  3220     * @since S60 5.0
       
  3221     * @param aItem Script line containing parameters.
       
  3222     * @return Symbian OS error code.
       
  3223     */
       
  3224     virtual TInt TestQVNArrayFormattedStringSizeOneL( CStifItemParser& aItem );
       
  3225     
       
  3226     /**
       
  3227     * TestQVNArrayFormattedStringSizeTwoL test method for test the FormattedStringSize.
       
  3228     * @since S60 5.0
       
  3229     * @param aItem Script line containing parameters.
       
  3230     * @return Symbian OS error code.
       
  3231     */
       
  3232     virtual TInt TestQVNArrayFormattedStringSizeTwoL( CStifItemParser& aItem );
       
  3233     
       
  3234     /**
       
  3235     * TestQVNArrayMdcaCountL test method for test the MdcaCount.
       
  3236     * @since S60 5.0
       
  3237     * @param aItem Script line containing parameters.
       
  3238     * @return Symbian OS error code.
       
  3239     */
       
  3240     virtual TInt TestQVNArrayMdcaCountL( CStifItemParser& aItem );
       
  3241     
       
  3242     /**
       
  3243     * TestQVNArrayMdcaPointL test method for test the MdcaPoint.
       
  3244     * @since S60 5.0
       
  3245     * @param aItem Script line containing parameters.
       
  3246     * @return Symbian OS error code.
       
  3247     */
       
  3248     virtual TInt TestQVNArrayMdcaPointL( CStifItemParser& aItem );
       
  3249     
       
  3250 //AknQueryValuePhone.h
       
  3251     /**
       
  3252     * TestPhoneNewL test method for test the NewL.
       
  3253     * @since S60 5.0
       
  3254     * @param aItem Script line containing parameters.
       
  3255     * @return Symbian OS error code.
       
  3256     */
       
  3257     virtual TInt TestPhoneNewL( CStifItemParser& aItem );
       
  3258     
       
  3259     /**
       
  3260     * TestPhoneNewLC test method for test the NewLC.
       
  3261     * @since S60 5.0
       
  3262     * @param aItem Script line containing parameters.
       
  3263     * @return Symbian OS error code.
       
  3264     */
       
  3265     virtual TInt TestPhoneNewLC( CStifItemParser& aItem );
       
  3266     
       
  3267     /**
       
  3268     * TestPhoneDeconstructorL test method for test the ~CAknQueryValuePhone.
       
  3269     * @since S60 5.0
       
  3270     * @param aItem Script line containing parameters.
       
  3271     * @return Symbian OS error code.
       
  3272     */
       
  3273     virtual TInt TestPhoneDeconstructorL( CStifItemParser& aItem );
       
  3274     
       
  3275     /**
       
  3276     * TestPhoneSetArrayL test method for test the SetArrayL.
       
  3277     * @since S60 5.0
       
  3278     * @param aItem Script line containing parameters.
       
  3279     * @return Symbian OS error code.
       
  3280     */
       
  3281     virtual TInt TestPhoneSetArrayL( CStifItemParser& aItem );
       
  3282     
       
  3283     /**
       
  3284     * TestPhoneSetQueryCaptionL test method for test the SetQueryCaption.
       
  3285     * @since S60 5.0
       
  3286     * @param aItem Script line containing parameters.
       
  3287     * @return Symbian OS error code.
       
  3288     */
       
  3289     virtual TInt TestPhoneSetQueryCaptionL( CStifItemParser& aItem );
       
  3290     
       
  3291     /**
       
  3292     * TestPhoneValueL test method for test the Value.
       
  3293     * @since S60 5.0
       
  3294     * @param aItem Script line containing parameters.
       
  3295     * @return Symbian OS error code.
       
  3296     */
       
  3297     virtual TInt TestPhoneValueL( CStifItemParser& aItem );
       
  3298     
       
  3299     /**
       
  3300     * TestPhoneMdcArrayL test method for test the MdcArray.
       
  3301     * @since S60 5.0
       
  3302     * @param aItem Script line containing parameters.
       
  3303     * @return Symbian OS error code.
       
  3304     */
       
  3305     virtual TInt TestPhoneMdcArrayL( CStifItemParser& aItem );
       
  3306     
       
  3307     /**
       
  3308     * TestPhoneCurrentValueTextLC test method for test the CurrentValueTextLC.
       
  3309     * @since S60 5.0
       
  3310     * @param aItem Script line containing parameters.
       
  3311     * @return Symbian OS error code.
       
  3312     */
       
  3313     virtual TInt TestPhoneCurrentValueTextLC( CStifItemParser& aItem );
       
  3314     
       
  3315     /**
       
  3316     * TestPhoneCurrentValueIndexL test method for test the CurrentValueIndex.
       
  3317     * @since S60 5.0
       
  3318     * @param aItem Script line containing parameters.
       
  3319     * @return Symbian OS error code.
       
  3320     */
       
  3321     virtual TInt TestPhoneCurrentValueIndexL( CStifItemParser& aItem );
       
  3322     
       
  3323     /**
       
  3324     * TestPhoneSetCurrentValueIndexL test method for test the SetCurrentValueIndex.
       
  3325     * @since S60 5.0
       
  3326     * @param aItem Script line containing parameters.
       
  3327     * @return Symbian OS error code.
       
  3328     */
       
  3329     virtual TInt TestPhoneSetCurrentValueIndexL( CStifItemParser& aItem );
       
  3330     
       
  3331     /**
       
  3332     * TestPhoneCreateEditorL test method for test the CreateEditorL.
       
  3333     * @since S60 5.0
       
  3334     * @param aItem Script line containing parameters.
       
  3335     * @return Symbian OS error code.
       
  3336     */
       
  3337     virtual TInt TestPhoneCreateEditorL( CStifItemParser& aItem );
       
  3338     
       
  3339     /**
       
  3340     * TestPhoneArrayNewL test method for test the NewL.
       
  3341     * @since S60 5.0
       
  3342     * @param aItem Script line containing parameters.
       
  3343     * @return Symbian OS error code.
       
  3344     */
       
  3345     virtual TInt TestPhoneArrayNewL( CStifItemParser& aItem );
       
  3346     
       
  3347     /**
       
  3348     * TestPhoneArrayNewLC test method for test the NewLC.
       
  3349     * @since S60 5.0
       
  3350     * @param aItem Script line containing parameters.
       
  3351     * @return Symbian OS error code.
       
  3352     */
       
  3353     virtual TInt TestPhoneArrayNewLC( CStifItemParser& aItem );
       
  3354     
       
  3355     /**
       
  3356     * TestPhoneArrayDeconstructorL test method for test the ~CAknQueryValuePhoneArray.
       
  3357     * @since S60 5.0
       
  3358     * @param aItem Script line containing parameters.
       
  3359     * @return Symbian OS error code.
       
  3360     */
       
  3361     virtual TInt TestPhoneArrayDeconstructorL( CStifItemParser& aItem );
       
  3362     
       
  3363     /**
       
  3364     * TestPhoneArraySetArrayL test method for test the SetArray.
       
  3365     * @since S60 5.0
       
  3366     * @param aItem Script line containing parameters.
       
  3367     * @return Symbian OS error code.
       
  3368     */
       
  3369     virtual TInt TestPhoneArraySetArrayL( CStifItemParser& aItem );
       
  3370     
       
  3371     /**
       
  3372     * TestPhoneArrayArrayL test method for test the Array.
       
  3373     * @since S60 5.0
       
  3374     * @param aItem Script line containing parameters.
       
  3375     * @return Symbian OS error code.
       
  3376     */
       
  3377     virtual TInt TestPhoneArrayArrayL( CStifItemParser& aItem );
       
  3378     
       
  3379     /**
       
  3380     * TestPhoneArrayFormattedStringSizeL test method for test the FormattedStringSize.
       
  3381     * @since S60 5.0
       
  3382     * @param aItem Script line containing parameters.
       
  3383     * @return Symbian OS error code.
       
  3384     */
       
  3385     virtual TInt TestPhoneArrayFormattedStringSizeL( CStifItemParser& aItem );
       
  3386     
       
  3387     /**
       
  3388     * TestPhoneArrayMdcaCountL test method for test the MdcaCount.
       
  3389     * @since S60 5.0
       
  3390     * @param aItem Script line containing parameters.
       
  3391     * @return Symbian OS error code.
       
  3392     */
       
  3393     virtual TInt TestPhoneArrayMdcaCountL( CStifItemParser& aItem );
       
  3394     
       
  3395     /**
       
  3396     * TestPhoneArrayMdcaPointL test method for test the MdcaPoint.
       
  3397     * @since S60 5.0
       
  3398     * @param aItem Script line containing parameters.
       
  3399     * @return Symbian OS error code.
       
  3400     */
       
  3401     virtual TInt TestPhoneArrayMdcaPointL( CStifItemParser& aItem );
       
  3402     
       
  3403     //AknQueryValueText.h
       
  3404     /**
       
  3405     * TestTextNewL test method for test the NewL.
       
  3406     * @since S60 5.0
       
  3407     * @param aItem Script line containing parameters.
       
  3408     * @return Symbian OS error code.
       
  3409     */
       
  3410     virtual TInt TestTextNewL( CStifItemParser& aItem );
       
  3411     
       
  3412     /**
       
  3413     * TestTextNewLC test method for test the NewLC.
       
  3414     * @since S60 5.0
       
  3415     * @param aItem Script line containing parameters.
       
  3416     * @return Symbian OS error code.
       
  3417     */
       
  3418     virtual TInt TestTextNewLC( CStifItemParser& aItem );
       
  3419     
       
  3420     /**
       
  3421     * TestTextDeconstructorL test method for test the ~CAknQueryValueText.
       
  3422     * @since S60 5.0
       
  3423     * @param aItem Script line containing parameters.
       
  3424     * @return Symbian OS error code.
       
  3425     */
       
  3426     virtual TInt TestTextDeconstructorL( CStifItemParser& aItem );
       
  3427     
       
  3428     /**
       
  3429     * TestTextSetArrayL test method for test the SetArrayL.
       
  3430     * @since S60 5.0
       
  3431     * @param aItem Script line containing parameters.
       
  3432     * @return Symbian OS error code.
       
  3433     */
       
  3434     virtual TInt TestTextSetArrayL( CStifItemParser& aItem );
       
  3435     
       
  3436     /**
       
  3437     * TestTextSetQueryCaptionL test method for test the SetQueryCaption.
       
  3438     * @since S60 5.0
       
  3439     * @param aItem Script line containing parameters.
       
  3440     * @return Symbian OS error code.
       
  3441     */
       
  3442     virtual TInt TestTextSetQueryCaptionL( CStifItemParser& aItem );
       
  3443     
       
  3444     /**
       
  3445     * TestTextValueL test method for test the Value.
       
  3446     * @since S60 5.0
       
  3447     * @param aItem Script line containing parameters.
       
  3448     * @return Symbian OS error code.
       
  3449     */
       
  3450     virtual TInt TestTextValueL( CStifItemParser& aItem );
       
  3451     
       
  3452     /**
       
  3453     * TestTextMdcArrayL test method for test the MdcArray.
       
  3454     * @since S60 5.0
       
  3455     * @param aItem Script line containing parameters.
       
  3456     * @return Symbian OS error code.
       
  3457     */
       
  3458     virtual TInt TestTextMdcArrayL( CStifItemParser& aItem );
       
  3459     
       
  3460     /**
       
  3461     * TestTextCurrentValueTextLC test method for test the CurrentValueTextLC.
       
  3462     * @since S60 5.0
       
  3463     * @param aItem Script line containing parameters.
       
  3464     * @return Symbian OS error code.
       
  3465     */
       
  3466     virtual TInt TestTextCurrentValueTextLC( CStifItemParser& aItem );
       
  3467     
       
  3468     /**
       
  3469     * TestTextCurrentValueIndexL test method for test the CurrentValueIndex.
       
  3470     * @since S60 5.0
       
  3471     * @param aItem Script line containing parameters.
       
  3472     * @return Symbian OS error code.
       
  3473     */
       
  3474     virtual TInt TestTextCurrentValueIndexL( CStifItemParser& aItem );
       
  3475     
       
  3476     /**
       
  3477     * TestTextSetCurrentValueIndexL test method for test the SetCurrentValueIndex.
       
  3478     * @since S60 5.0
       
  3479     * @param aItem Script line containing parameters.
       
  3480     * @return Symbian OS error code.
       
  3481     */
       
  3482     virtual TInt TestTextSetCurrentValueIndexL( CStifItemParser& aItem );
       
  3483     
       
  3484     /**
       
  3485     * TestTextCreateEditorL test method for test the CreateEditorL.
       
  3486     * @since S60 5.0
       
  3487     * @param aItem Script line containing parameters.
       
  3488     * @return Symbian OS error code.
       
  3489     */
       
  3490     virtual TInt TestTextCreateEditorL( CStifItemParser& aItem );
       
  3491     
       
  3492     /**
       
  3493     * TestTextArrayNewL test method for test the NewL.
       
  3494     * @since S60 5.0
       
  3495     * @param aItem Script line containing parameters.
       
  3496     * @return Symbian OS error code.
       
  3497     */
       
  3498     virtual TInt TestTextArrayNewL( CStifItemParser& aItem );
       
  3499     
       
  3500     /**
       
  3501     * TestTextArrayNewLC test method for test the NewLC.
       
  3502     * @since S60 5.0
       
  3503     * @param aItem Script line containing parameters.
       
  3504     * @return Symbian OS error code.
       
  3505     */
       
  3506     virtual TInt TestTextArrayNewLC( CStifItemParser& aItem );
       
  3507     
       
  3508     /**
       
  3509     * TestTextArrayDeconstructorL test method for test the ~CAknQueryValueTextArray.
       
  3510     * @since S60 5.0
       
  3511     * @param aItem Script line containing parameters.
       
  3512     * @return Symbian OS error code.
       
  3513     */
       
  3514     virtual TInt TestTextArrayDeconstructorL( CStifItemParser& aItem );
       
  3515     
       
  3516     /**
       
  3517     * TestTextArraySetArrayL test method for test the SetArray.
       
  3518     * @since S60 5.0
       
  3519     * @param aItem Script line containing parameters.
       
  3520     * @return Symbian OS error code.
       
  3521     */
       
  3522     virtual TInt TestTextArraySetArrayL( CStifItemParser& aItem );
       
  3523     
       
  3524     /**
       
  3525     * TestTextArrayArrayL test method for test the Array.
       
  3526     * @since S60 5.0
       
  3527     * @param aItem Script line containing parameters.
       
  3528     * @return Symbian OS error code.
       
  3529     */
       
  3530     virtual TInt TestTextArrayArrayL( CStifItemParser& aItem );
       
  3531     
       
  3532     /**
       
  3533     * TestTextArrayFormattedStringSizeL test method for test the FormattedStringSize.
       
  3534     * @since S60 5.0
       
  3535     * @param aItem Script line containing parameters.
       
  3536     * @return Symbian OS error code.
       
  3537     */
       
  3538     virtual TInt TestTextArrayFormattedStringSizeL( CStifItemParser& aItem );
       
  3539     
       
  3540     /**
       
  3541     * TestTextArrayMdcaCountL test method for test the MdcaCount.
       
  3542     * @since S60 5.0
       
  3543     * @param aItem Script line containing parameters.
       
  3544     * @return Symbian OS error code.
       
  3545     */
       
  3546     virtual TInt TestTextArrayMdcaCountL( CStifItemParser& aItem );
       
  3547     
       
  3548     /**
       
  3549     * TestTextArrayMdcaPointL test method for test the MdcaPoint.
       
  3550     * @since S60 5.0
       
  3551     * @param aItem Script line containing parameters.
       
  3552     * @return Symbian OS error code.
       
  3553     */
       
  3554     virtual TInt TestTextArrayMdcaPointL( CStifItemParser& aItem );
       
  3555     
       
  3556     //AknQueryValueTime.h
       
  3557     /**
       
  3558     * TestTimeNewL test method for test the NewL.
       
  3559     * @since S60 5.0
       
  3560     * @param aItem Script line containing parameters.
       
  3561     * @return Symbian OS error code.
       
  3562     */
       
  3563     virtual TInt TestTimeNewL( CStifItemParser& aItem );
       
  3564     
       
  3565     /**
       
  3566     * TestTimeNewLC test method for test the NewLC.
       
  3567     * @since S60 5.0
       
  3568     * @param aItem Script line containing parameters.
       
  3569     * @return Symbian OS error code.
       
  3570     */
       
  3571     virtual TInt TestTimeNewLC( CStifItemParser& aItem );
       
  3572     
       
  3573     /**
       
  3574     * TestTimeDeconstructorL test method for test the ~CAknQueryValueTime.
       
  3575     * @since S60 5.0
       
  3576     * @param aItem Script line containing parameters.
       
  3577     * @return Symbian OS error code.
       
  3578     */
       
  3579     virtual TInt TestTimeDeconstructorL( CStifItemParser& aItem );
       
  3580     
       
  3581     /**
       
  3582     * TestTimeSetArrayL test method for test the SetArrayL.
       
  3583     * @since S60 5.0
       
  3584     * @param aItem Script line containing parameters.
       
  3585     * @return Symbian OS error code.
       
  3586     */
       
  3587     virtual TInt TestTimeSetArrayL( CStifItemParser& aItem );
       
  3588     
       
  3589     /**
       
  3590     * TestTimeSetQueryCaptionL test method for test the SetQueryCaption.
       
  3591     * @since S60 5.0
       
  3592     * @param aItem Script line containing parameters.
       
  3593     * @return Symbian OS error code.
       
  3594     */
       
  3595     virtual TInt TestTimeSetQueryCaptionL( CStifItemParser& aItem );
       
  3596     
       
  3597     /**
       
  3598     * TestTimeValueL test method for test the Value.
       
  3599     * @since S60 5.0
       
  3600     * @param aItem Script line containing parameters.
       
  3601     * @return Symbian OS error code.
       
  3602     */
       
  3603     virtual TInt TestTimeValueL( CStifItemParser& aItem );
       
  3604     
       
  3605     /**
       
  3606     * TestTimeMdcArrayL test method for test the MdcArray.
       
  3607     * @since S60 5.0
       
  3608     * @param aItem Script line containing parameters.
       
  3609     * @return Symbian OS error code.
       
  3610     */
       
  3611     virtual TInt TestTimeMdcArrayL( CStifItemParser& aItem );
       
  3612     
       
  3613     /**
       
  3614     * TestTimeCurrentValueTextLC test method for test the CurrentValueTimeLC.
       
  3615     * @since S60 5.0
       
  3616     * @param aItem Script line containing parameters.
       
  3617     * @return Symbian OS error code.
       
  3618     */
       
  3619     virtual TInt TestTimeCurrentValueTextLC( CStifItemParser& aItem );
       
  3620     
       
  3621     /**
       
  3622     * TestTimeCurrentValueIndexL test method for test the CurrentValueIndex.
       
  3623     * @since S60 5.0
       
  3624     * @param aItem Script line containing parameters.
       
  3625     * @return Symbian OS error code.
       
  3626     */
       
  3627     virtual TInt TestTimeCurrentValueIndexL( CStifItemParser& aItem );
       
  3628     
       
  3629     /**
       
  3630     * TestTimeSetCurrentValueIndexL test method for test the SetCurrentValueIndex.
       
  3631     * @since S60 5.0
       
  3632     * @param aItem Script line containing parameters.
       
  3633     * @return Symbian OS error code.
       
  3634     */
       
  3635     virtual TInt TestTimeSetCurrentValueIndexL( CStifItemParser& aItem );
       
  3636     
       
  3637     /**
       
  3638     * TestTimeCreateEditorL test method for test the CreateEditorL.
       
  3639     * @since S60 5.0
       
  3640     * @param aItem Script line containing parameters.
       
  3641     * @return Symbian OS error code.
       
  3642     */
       
  3643     virtual TInt TestTimeCreateEditorL( CStifItemParser& aItem );
       
  3644     
       
  3645     /**
       
  3646     * TestTimeArrayNewL test method for test the NewL.
       
  3647     * @since S60 5.0
       
  3648     * @param aItem Script line containing parameters.
       
  3649     * @return Symbian OS error code.
       
  3650     */
       
  3651     virtual TInt TestTimeArrayNewL( CStifItemParser& aItem );
       
  3652     
       
  3653     /**
       
  3654     * TestTimeArrayNewLC test method for test the NewLC.
       
  3655     * @since S60 5.0
       
  3656     * @param aItem Script line containing parameters.
       
  3657     * @return Symbian OS error code.
       
  3658     */
       
  3659     virtual TInt TestTimeArrayNewLC( CStifItemParser& aItem );
       
  3660     
       
  3661     /**
       
  3662     * TestTimeArrayDeconstructorL test method for test the ~CAknQueryValueTimeArray.
       
  3663     * @since S60 5.0
       
  3664     * @param aItem Script line containing parameters.
       
  3665     * @return Symbian OS error code.
       
  3666     */
       
  3667     virtual TInt TestTimeArrayDeconstructorL( CStifItemParser& aItem );
       
  3668     
       
  3669     /**
       
  3670     * TestTimeArraySetArrayL test method for test the SetArray.
       
  3671     * @since S60 5.0
       
  3672     * @param aItem Script line containing parameters.
       
  3673     * @return Symbian OS error code.
       
  3674     */
       
  3675     virtual TInt TestTimeArraySetArrayL( CStifItemParser& aItem );
       
  3676     
       
  3677     /**
       
  3678     * TestTimeArrayArrayL test method for test the Array.
       
  3679     * @since S60 5.0
       
  3680     * @param aItem Script line containing parameters.
       
  3681     * @return Symbian OS error code.
       
  3682     */
       
  3683     virtual TInt TestTimeArrayArrayL( CStifItemParser& aItem );
       
  3684     
       
  3685     /**
       
  3686     * TestTimeArrayFormatStringL test method for test the FormatString.
       
  3687     * @since S60 5.0
       
  3688     * @param aItem Script line containing parameters.
       
  3689     * @return Symbian OS error code.
       
  3690     */
       
  3691     virtual TInt TestTimeArrayFormatStringL( CStifItemParser& aItem );
       
  3692     
       
  3693     /**
       
  3694     * TestTimeArrayFormattedStringSizeL test method for test the FormattedStringSize.
       
  3695     * @since S60 5.0
       
  3696     * @param aItem Script line containing parameters.
       
  3697     * @return Symbian OS error code.
       
  3698     */
       
  3699     virtual TInt TestTimeArrayFormattedStringSizeL( CStifItemParser& aItem );
       
  3700     
       
  3701     /**
       
  3702     * TestTimeArrayMdcaCountL test method for test the MdcaCount.
       
  3703     * @since S60 5.0
       
  3704     * @param aItem Script line containing parameters.
       
  3705     * @return Symbian OS error code.
       
  3706     */
       
  3707     virtual TInt TestTimeArrayMdcaCountL( CStifItemParser& aItem );
       
  3708     
       
  3709     /**
       
  3710     * TestTimeArrayMdcaPointL test method for test the MdcaPoint.
       
  3711     * @since S60 5.0
       
  3712     * @param aItem Script line containing parameters.
       
  3713     * @return Symbian OS error code.
       
  3714     */
       
  3715     virtual TInt TestTimeArrayMdcaPointL( CStifItemParser& aItem );
       
  3716     
       
  3717 private:
       
  3718     /**
       
  3719      * Method used to log version of test class
       
  3720      */
       
  3721     void SendTestClassVersion();
       
  3722     
       
  3723         /**
       
  3724      * Turn off ScreenSaver
       
  3725      * @since S60 5.0
       
  3726      * @return Symbian OS error code.
       
  3727      */
       
  3728     void TurnOffScreenSaver();
       
  3729 
       
  3730     /**
       
  3731      * Restore ScreenSaver
       
  3732      * @since S60 5.0
       
  3733      * @return Symbian OS error code.
       
  3734      */
       
  3735     void RestoreScreenSaver();
       
  3736 
       
  3737 private:    // Data
       
  3738 
       
  3739     /**
       
  3740      * ScreenSaver Property
       
  3741      */
       
  3742     TInt iOldScreenSaverProperty;
       
  3743     
       
  3744     /**
       
  3745      * for test the akndialog.h
       
  3746      * own.
       
  3747      */
       
  3748     CAknDialog* iDialog;
       
  3749     CTestSDKQueriesDialg* iTestDialog;
       
  3750 
       
  3751     CTestSDKQueriesView *iView;
       
  3752     CTestSDKQueriesContainer* iContainer;
       
  3753     
       
  3754     // Resource file offset
       
  3755     TInt iOffset;
       
  3756     };
       
  3757 
       
  3758 #endif      // C_TESTSDKQUERIES_H
       
  3759 
       
  3760 // End of File