os/mm/mmlibs/mmfw/tsrc/mmfunittest/Actrl/TestStepController.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // TestStepActrlController.h
    15 // This file contains Test step implementations for
    16 // controller methods.
    17 //
    18 
    19 
    20 #if (!defined __TESTSTEP_CONTROLLER_H__)
    21 #define __TESTSTEP_CONTROLLER_H__
    22 
    23 #include <e32std.h>
    24 #include <e32base.h>
    25 #include "TS_MMF_ACTRL_TestStep.h"
    26 
    27 /**
    28  *
    29  * CTestStepResetController
    30  * This class tests resetting the controller
    31  *
    32  * @lib "TSU_MMF_ACTRL_01.lib"
    33  *
    34  */
    35 class CTestStepResetController : public CTestStepActrl
    36 	{
    37 public:
    38 	CTestStepResetController();
    39 	~CTestStepResetController();
    40 	virtual TVerdict  DoTestStepL( void );
    41 	};
    42 
    43 /**
    44  *
    45  * CTestStepRemoveDataSink
    46  * This class tests removing a data sink
    47  *
    48  * @lib "TSU_MMF_ACTRL_01.lib"
    49  *
    50  */
    51 class CTestStepRemoveDataSink : public CTestStepActrl
    52 	{
    53 public:
    54 	CTestStepRemoveDataSink();
    55 	~CTestStepRemoveDataSink();
    56 	virtual TVerdict  DoTestStepL( void );
    57 	};
    58 
    59 /**
    60  *
    61  * CTestStepRemoveDataSource
    62  * This class tests removing a data source
    63  *
    64  * @lib "TSU_MMF_ACTRL_01.lib"
    65  *
    66  */
    67 class CTestStepRemoveDataSource : public CTestStepActrl
    68 	{
    69 public:
    70 	CTestStepRemoveDataSource();
    71 	~CTestStepRemoveDataSource();
    72 	virtual TVerdict  DoTestStepL( void );
    73 	};
    74 
    75 /**
    76  *
    77  * CTestStepMemoryAllocation
    78  * This class tests memory allocation on the plugin
    79  *
    80  * @lib "TSU_MMF_ACTRL_01.lib"
    81  *
    82  */
    83 class CTestStepMemoryAllocation : public CTestStepActrl
    84 	{
    85 public:
    86 	CTestStepMemoryAllocation();
    87 	~CTestStepMemoryAllocation();
    88 	virtual TVerdict  DoTestStepL( void );
    89 	};
    90 
    91 #endif // ( __TESTSTEP_CONTROLLER_H__)