mmlibs/mmfw/tsrc/mmfunittest/Actrl/TestStepController.h
author hgs
Thu, 24 Jun 2010 10:37:45 +0100
changeset 26 c36d67f77f75
parent 0 40261b775718
permissions -rw-r--r--
2010wk21_04

// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// TestStepActrlController.h
// This file contains Test step implementations for
// controller methods.
//


#if (!defined __TESTSTEP_CONTROLLER_H__)
#define __TESTSTEP_CONTROLLER_H__

#include <e32std.h>
#include <e32base.h>
#include "TS_MMF_ACTRL_TestStep.h"

/**
 *
 * CTestStepResetController
 * This class tests resetting the controller
 *
 * @lib "TSU_MMF_ACTRL_01.lib"
 *
 */
class CTestStepResetController : public CTestStepActrl
	{
public:
	CTestStepResetController();
	~CTestStepResetController();
	virtual TVerdict  DoTestStepL( void );
	};

/**
 *
 * CTestStepRemoveDataSink
 * This class tests removing a data sink
 *
 * @lib "TSU_MMF_ACTRL_01.lib"
 *
 */
class CTestStepRemoveDataSink : public CTestStepActrl
	{
public:
	CTestStepRemoveDataSink();
	~CTestStepRemoveDataSink();
	virtual TVerdict  DoTestStepL( void );
	};

/**
 *
 * CTestStepRemoveDataSource
 * This class tests removing a data source
 *
 * @lib "TSU_MMF_ACTRL_01.lib"
 *
 */
class CTestStepRemoveDataSource : public CTestStepActrl
	{
public:
	CTestStepRemoveDataSource();
	~CTestStepRemoveDataSource();
	virtual TVerdict  DoTestStepL( void );
	};

/**
 *
 * CTestStepMemoryAllocation
 * This class tests memory allocation on the plugin
 *
 * @lib "TSU_MMF_ACTRL_01.lib"
 *
 */
class CTestStepMemoryAllocation : public CTestStepActrl
	{
public:
	CTestStepMemoryAllocation();
	~CTestStepMemoryAllocation();
	virtual TVerdict  DoTestStepL( void );
	};

#endif // ( __TESTSTEP_CONTROLLER_H__)