sl@0: /* sl@0: * Copyright (c) 2005-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 the License "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: sl@0: sl@0: sl@0: sl@0: /** sl@0: @file sl@0: */ sl@0: sl@0: #ifndef CAPTESTFRAMEWORK_H__ sl@0: #define CAPTESTFRAMEWORK_H__ sl@0: sl@0: // Used to transfer data to the helper sl@0: const TInt KDllNameTransferSlot=5; sl@0: const TInt KShouldPassTransferSlot=6; sl@0: const TInt KTestNumberTransferSlot=7; sl@0: const TInt KLogFileTransferSlot=8; sl@0: const TInt KFileSessionTransferSlot=9; sl@0: const TInt KLogFileNameTransferSlot=10; sl@0: sl@0: sl@0: // markers for the file used to transfer the results sl@0: sl@0: enum TFileMarker sl@0: { sl@0: ETestPassed, sl@0: ETestFailed, sl@0: ETestsEnded, sl@0: EFileEnd, sl@0: }; sl@0: sl@0: sl@0: class RFile; sl@0: sl@0: // classes to be implemented by the actaul test dll. sl@0: class MCapabilityTest sl@0: { sl@0: public: sl@0: virtual const TDesC& Name() const=0; sl@0: virtual const TDesC& SubName() const=0; sl@0: sl@0: virtual TCapabilitySet CapabilitiesRequired() const=0; sl@0: virtual TUid VidRequired() const=0; sl@0: virtual TUid SidRequired() const=0; sl@0: sl@0: virtual void RunTestL(RFile& aLogFile)=0; sl@0: virtual void SetExpectPermissionDenied(TBool aExpectPermissionDenied)=0; sl@0: virtual ~MCapabilityTest() {}; sl@0: }; sl@0: sl@0: class MCapabilityTestFactory sl@0: { sl@0: public: sl@0: virtual TInt NumberOfTests()=0; sl@0: virtual MCapabilityTest* Test(TInt aTestNumber)=0; sl@0: virtual ~MCapabilityTestFactory() {}; sl@0: }; sl@0: sl@0: sl@0: sl@0: sl@0: #endif // #ifndef CAPTESTFRAMEWORK_H__