sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef TESTSTEPCISBCENCODER_H sl@0: #define TESTSTEPCISBCENCODER_H sl@0: sl@0: #include sl@0: sl@0: // Custom interface definitions sl@0: #include sl@0: #include sl@0: sl@0: #include "devsoundciutestdevices.hrh" sl@0: sl@0: // Test system includes sl@0: #include "tsu_mmf_devsound_ciu_step.h" sl@0: #include "tsu_mmf_devsound_ciu_suite.h" sl@0: sl@0: class CTestStepCISbcEncoder : public CTestStepCustominterfaceUnificationUnit sl@0: { sl@0: public: sl@0: CTestStepCISbcEncoder(); sl@0: TVerdict DoTestStepL(); sl@0: }; sl@0: sl@0: class CTestStepCISbcEncoderGetSupportedFrequencies : public CTestStepCustominterfaceUnificationUnit sl@0: { sl@0: public: sl@0: CTestStepCISbcEncoderGetSupportedFrequencies(); sl@0: TVerdict DoTestStepL(); sl@0: private: sl@0: TBool ValidateArray(const RArray& aArray) const; sl@0: }; sl@0: sl@0: class CTestStepCISbcEncoderGetSupportedSubbands : public CTestStepCustominterfaceUnificationUnit sl@0: { sl@0: public: sl@0: CTestStepCISbcEncoderGetSupportedSubbands(); sl@0: TVerdict DoTestStepL(); sl@0: private: sl@0: TBool ValidateArray(const RArray& aArray) const; sl@0: }; sl@0: sl@0: class CTestStepCISbcEncoderGetSupportedNumOfBlocks : public CTestStepCustominterfaceUnificationUnit sl@0: { sl@0: public: sl@0: CTestStepCISbcEncoderGetSupportedNumOfBlocks(); sl@0: TVerdict DoTestStepL(); sl@0: private: sl@0: TBool ValidateArray(const RArray& aArray) const; sl@0: }; sl@0: sl@0: class CTestStepCISbcEncoderGetSupportedChannelModes : public CTestStepCustominterfaceUnificationUnit sl@0: { sl@0: public: sl@0: CTestStepCISbcEncoderGetSupportedChannelModes(); sl@0: TVerdict DoTestStepL(); sl@0: private: sl@0: TBool ValidateArray(const RArray& aArray) const; sl@0: }; sl@0: sl@0: class CTestStepCISbcEncoderGetSupportedAllocationMethods : public CTestStepCustominterfaceUnificationUnit sl@0: { sl@0: public: sl@0: CTestStepCISbcEncoderGetSupportedAllocationMethods(); sl@0: TVerdict DoTestStepL(); sl@0: private: sl@0: TBool ValidateArray(const RArray& aArray) const; sl@0: }; sl@0: sl@0: class CTestStepCISbcEncoderGetSupportedBitpoolRange : public CTestStepCustominterfaceUnificationUnit sl@0: { sl@0: public: sl@0: CTestStepCISbcEncoderGetSupportedBitpoolRange(); sl@0: TVerdict DoTestStepL(); sl@0: }; sl@0: sl@0: class CTestStepCISbcEncoderGetSetFrequency : public CTestStepCustominterfaceUnificationUnit sl@0: { sl@0: public: sl@0: CTestStepCISbcEncoderGetSetFrequency(TBool iIsGetTest); sl@0: TVerdict DoTestStepL(); sl@0: private: sl@0: TBool iIsGetTest; sl@0: }; sl@0: sl@0: class CTestStepCISbcEncoderGetSetChannelMode : public CTestStepCustominterfaceUnificationUnit sl@0: { sl@0: public: sl@0: CTestStepCISbcEncoderGetSetChannelMode(TBool iIsGetTest); sl@0: TVerdict DoTestStepL(); sl@0: private: sl@0: TBool iIsGetTest; sl@0: }; sl@0: sl@0: class CTestStepCISbcEncoderGetSetNumOfSubbands : public CTestStepCustominterfaceUnificationUnit sl@0: { sl@0: public: sl@0: CTestStepCISbcEncoderGetSetNumOfSubbands(TBool iIsGetTest); sl@0: TVerdict DoTestStepL(); sl@0: private: sl@0: TBool iIsGetTest; sl@0: }; sl@0: sl@0: class CTestStepCISbcEncoderGetSetNumOfBlocks : public CTestStepCustominterfaceUnificationUnit sl@0: { sl@0: public: sl@0: CTestStepCISbcEncoderGetSetNumOfBlocks(TBool iIsGetTest); sl@0: TVerdict DoTestStepL(); sl@0: private: sl@0: TBool iIsGetTest; sl@0: }; sl@0: sl@0: class CTestStepCISbcEncoderGetSetAllocationMethod : public CTestStepCustominterfaceUnificationUnit sl@0: { sl@0: public: sl@0: CTestStepCISbcEncoderGetSetAllocationMethod(TBool iIsGetTest); sl@0: TVerdict DoTestStepL(); sl@0: private: sl@0: TBool iIsGetTest; sl@0: }; sl@0: sl@0: class CTestStepCISbcEncoderGetSetBitpoolSize : public CTestStepCustominterfaceUnificationUnit sl@0: { sl@0: public: sl@0: CTestStepCISbcEncoderGetSetBitpoolSize(TBool iIsGetTest); sl@0: TVerdict DoTestStepL(); sl@0: private: sl@0: TBool iIsGetTest; sl@0: }; sl@0: sl@0: class CTestStepCISbcEncoderApplyConfig : public CTestStepCustominterfaceUnificationUnit sl@0: { sl@0: public: sl@0: CTestStepCISbcEncoderApplyConfig(); sl@0: TVerdict DoTestStepL(); sl@0: }; sl@0: sl@0: #endif