idlefw/tsrc/framework/ut_aifw/ut_aicpsexecuteparam/inc/ut_aicpsexecuteparam.h
branchRCL_3
changeset 27 2c7f27287390
equal deleted inserted replaced
25:9e077f9a342c 27:2c7f27287390
       
     1 /*
       
     2 * Copyright (c) 2004 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: EUnit unit test class for CAiEcomObserver
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef _UT_AICPSEXECUTEPARAM_H
       
    20 #define _UT_AICPSEXECUTEPARAM_H
       
    21 
       
    22 // System includes
       
    23 #include <e32base.h>
       
    24 #include <digia/eunit/ceunittestsuiteclass.h>
       
    25 
       
    26 // User includes 
       
    27 
       
    28 // Forward declarations
       
    29 class CAiCpsExecuteParam;
       
    30 
       
    31 // Clas declaration
       
    32 NONSHARABLE_CLASS( UT_AiCpsExecuteParam ) : public CEUnitTestSuiteClass
       
    33     {
       
    34 public:
       
    35     // Constructors and destructors
       
    36 
       
    37     /**
       
    38      * Two phase construction
       
    39      */
       
    40     static UT_AiCpsExecuteParam* NewL();
       
    41 
       
    42     /**
       
    43      * Two phase construction
       
    44      */    
       
    45     static UT_AiCpsExecuteParam* NewLC();
       
    46     
       
    47     /**
       
    48      * Destructor
       
    49      */
       
    50     ~UT_AiCpsExecuteParam();
       
    51 
       
    52 private: 
       
    53     // Constructors and destructors
       
    54 
       
    55     UT_AiCpsExecuteParam();
       
    56     
       
    57     void ConstructL();
       
    58         
       
    59 private:    
       
    60     // New methods
       
    61 
       
    62     void SetupL();        
       
    63     void Teardown();
       
    64     
       
    65     void PluginId();
       
    66     void InParamMapL();
       
    67     
       
    68 private:    
       
    69     // data
       
    70     CAiCpsExecuteParam* iExecuteParam; 
       
    71     
       
    72     EUNIT_DECLARE_TEST_TABLE;
       
    73     };
       
    74 
       
    75 #endif //  _UT_AICPSEXECUTEPARAM_H
       
    76 
       
    77 // End of file