diff -r 000000000000 -r ff3b6d0fd310 phonesrv_plat/call_information_api/tsrc/src/MT_CallInformation.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/phonesrv_plat/call_information_api/tsrc/src/MT_CallInformation.h Tue Feb 02 01:11:09 2010 +0200 @@ -0,0 +1,89 @@ +/* +* Copyright (c) 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: +* +*/ + +#ifndef __MT_CALLINFORMATION_H__ +#define __MT_CALLINFORMATION_H__ + +// INCLUDES +#include +#include + +#include +#include +#include + +// FORWARD DECLARATIONS +class CDialer; +#ifdef __WINSCW__ +class CPhoneEngineCreator; +class MPEPhoneModel; +class CPEMessageWaiter; +#endif + +// CLASS DEFINITION +/** + * Generated EUnit test suite class. + */ +NONSHARABLE_CLASS( MT_CallInformation ) + : public CEUnitTestSuiteClass, public MCallInformationObserver + { + public: // Constructors and destructor + + static MT_CallInformation* NewL(); + static MT_CallInformation* NewLC(); + ~MT_CallInformation(); + + private: // Constructors + + MT_CallInformation(); + void ConstructL(); + void CallInformationChanged(); + + + private: // New methods + + void SetupL(); + + void Teardown(); + + void TestNoCallsL(); + void TestActiveCallL(); + void TestSingleCallL(); + void TestEmergencyCallL(); + void TestMultiCallL(); + void TwoCallsExistL(); + + + + private: // Data + + CCallInformation* iCallInfos; + CDialer* iDialer; + CActiveSchedulerWait* iWait; + RTelServer iTelServer; + +#ifdef __WINSCW__ + CPhoneEngineCreator* iPECreator; + MPEPhoneModel* iPhoneModel; + CPEMessageWaiter* iMsgWaiter; +#endif + + EUNIT_DECLARE_TEST_TABLE; + + }; + +#endif // __MT_CALLINFORMATION_H__