landmarks/locationlandmarks/tsrc/LandmarkTestModule/inc/FT_CPosTp44.h
branchRCL_3
changeset 44 2b4ea9893b66
equal deleted inserted replaced
42:02ba3f1733c6 44:2b4ea9893b66
       
     1 /*
       
     2 * Copyright (c) 2005 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: 
       
    15 *   ?description_line
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef CPOSTp44_H
       
    21 #define CPOSTp44_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include "EPos_LandmarksErrors.h"
       
    25 
       
    26 #include "FT_CLandmarkTestProcedureBase.h"
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 *  Test procedure 44
       
    32 */
       
    33 class CPosTp44 : public CLandmarkTestProcedureBase
       
    34     {
       
    35     public:  // Constructors and destructor
       
    36         
       
    37         /**
       
    38         * C++ default constructor.
       
    39         */
       
    40        
       
    41         CPosTp44(TInt tpno, CStifLogger* aLog) : CLandmarkTestProcedureBase(tpno, aLog) {};
       
    42         /**
       
    43         * Destructor.
       
    44         */
       
    45         ~CPosTp44() {};
       
    46 
       
    47     public:
       
    48        
       
    49         /**
       
    50         * Includes both Panic testing and testing of correct leave codes
       
    51         */
       
    52         static void RunPanicTestL(TAny* aData);
       
    53        
       
    54     public: // Functions from base classes
       
    55 
       
    56         /**
       
    57         * From CLandmarkTestProcedureBase
       
    58         * Runs the test in the module
       
    59         */
       
    60         void StartL();
       
    61 
       
    62         /**
       
    63         * From CLandmarkTestProcedureBase
       
    64         * Always called, even if the test leaves
       
    65         */
       
    66         void CloseTest();
       
    67         
       
    68         static TInt DeleteEncoderCallback(TAny* aSelf);
       
    69 
       
    70     private:
       
    71 
       
    72       void CreateThreadL();
       
    73 
       
    74       void ResumeThreadAndVerifyExit();
       
    75 
       
    76       void RunLeaveTestL();
       
    77 
       
    78     public:
       
    79         enum ExitType {ExitPanic, ExitLeave};
       
    80 
       
    81     private:
       
    82 
       
    83         RThread     iThread;
       
    84         TInt        iExpectedErrorCode;
       
    85         ExitType    iExpectedExitType;
       
    86         TInt        iTestCase;
       
    87     };
       
    88 
       
    89 #endif      // CPOSTp44_H
       
    90             
       
    91 // End of File