os/security/cryptomgmtlibs/securitytestfw/test/captestframework/captestframework.h
Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
25 #ifndef CAPTESTFRAMEWORK_H__
26 #define CAPTESTFRAMEWORK_H__
28 // Used to transfer data to the helper
29 const TInt KDllNameTransferSlot=5;
30 const TInt KShouldPassTransferSlot=6;
31 const TInt KTestNumberTransferSlot=7;
32 const TInt KLogFileTransferSlot=8;
33 const TInt KFileSessionTransferSlot=9;
34 const TInt KLogFileNameTransferSlot=10;
37 // markers for the file used to transfer the results
50 // classes to be implemented by the actaul test dll.
54 virtual const TDesC& Name() const=0;
55 virtual const TDesC& SubName() const=0;
57 virtual TCapabilitySet CapabilitiesRequired() const=0;
58 virtual TUid VidRequired() const=0;
59 virtual TUid SidRequired() const=0;
61 virtual void RunTestL(RFile& aLogFile)=0;
62 virtual void SetExpectPermissionDenied(TBool aExpectPermissionDenied)=0;
63 virtual ~MCapabilityTest() {};
66 class MCapabilityTestFactory
69 virtual TInt NumberOfTests()=0;
70 virtual MCapabilityTest* Test(TInt aTestNumber)=0;
71 virtual ~MCapabilityTestFactory() {};
77 #endif // #ifndef CAPTESTFRAMEWORK_H__