os/mm/mmlibs/mmfw/tsrc/mmfunittest/GEF/src/GlobalEffectTest.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mmlibs/mmfw/tsrc/mmfunittest/GEF/src/GlobalEffectTest.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,82 @@
     1.4 +
     1.5 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +// All rights reserved.
     1.7 +// This component and the accompanying materials are made available
     1.8 +// under the terms of "Eclipse Public License v1.0"
     1.9 +// which accompanies this distribution, and is available
    1.10 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +//
    1.12 +// Initial Contributors:
    1.13 +// Nokia Corporation - initial contribution.
    1.14 +//
    1.15 +// Contributors:
    1.16 +//
    1.17 +// Description:
    1.18 +//
    1.19 +
    1.20 +#ifndef GLOBALEFFECTTEST_H
    1.21 +#define GLOBALEFFECTTEST_H
    1.22 +
    1.23 +#include <testframework.h>
    1.24 +
    1.25 +#include <mmf/common/mmfglblaudioeffect.h>
    1.26 +
    1.27 +class CTestGlobalEffect; // forward
    1.28 +
    1.29 +class RGlobalEffectPrimitiveTest : public RTestStep
    1.30 +	{
    1.31 +public:
    1.32 +	static RGlobalEffectPrimitiveTest* NewL(TBool aAllocTest);
    1.33 +protected:
    1.34 +	// from RTestStep;
    1.35 +	TVerdict DoTestStepL();
    1.36 +private:
    1.37 +	RGlobalEffectPrimitiveTest(TBool aAllocTest);
    1.38 +	
    1.39 +	};
    1.40 +
    1.41 +class RGlobalEffectStdTest : public RTestStep
    1.42 +	{
    1.43 +public:
    1.44 +	static RGlobalEffectStdTest* NewL(TBool aAllocTest);
    1.45 +protected:
    1.46 +	// from RTestStep;
    1.47 +	TVerdict DoTestStepL();
    1.48 +private:
    1.49 +	RGlobalEffectStdTest(TBool aAllocTest);
    1.50 +	
    1.51 +	};
    1.52 +
    1.53 +class RGlobalEffectMainTest : public RTestStep
    1.54 +	{
    1.55 +public:
    1.56 +	static RGlobalEffectMainTest* NewL(TBool aAllocTest);
    1.57 +protected:
    1.58 +	// from RTestStep;
    1.59 +	TVerdict DoTestStepL();
    1.60 +private:
    1.61 +	RGlobalEffectMainTest(TBool aAllocTest);
    1.62 +	
    1.63 +	};
    1.64 +
    1.65 +class RGlobalEffectCallbackTest : public RTestStep,
    1.66 +                                  public MMmfGlobalAudioEffectObserver
    1.67 +	{
    1.68 +public:
    1.69 +	static RGlobalEffectCallbackTest* NewL(TBool aAllocTest);
    1.70 +protected:
    1.71 +	// from RTestStep;
    1.72 +	TVerdict DoTestStepL();
    1.73 +	
    1.74 +	// from MMmfGlobalAudioEffectObserver
    1.75 +	void GAEEventNotificationL(CMmfGlobalAudioEffect* aEffect, TUid aEventUid, const TDesC8& aParam);
    1.76 +	
    1.77 +private:
    1.78 +	RGlobalEffectCallbackTest(TBool aAllocTest);
    1.79 +	
    1.80 +	CTestGlobalEffect* iEffect;	// not owned
    1.81 +	TBool iCalledBack;
    1.82 +	TVerdict iResult;
    1.83 +	};
    1.84 +
    1.85 +#endif // GLOBALEFFECTTEST_H