os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/Thardcodedsetup.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/Thardcodedsetup.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,56 @@
     1.4 +/*
     1.5 +* Copyright (c) 1998-2010 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 the License "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 +
    1.21 +
    1.22 +#ifndef __T_HARDCODEDSETUP_H__
    1.23 +#define __T_HARDCODEDSETUP_H__
    1.24 +
    1.25 +#include "t_testsetup.h"
    1.26 +#include "tHardcodedTests.h"
    1.27 +
    1.28 +class CTestAction;
    1.29 +class TTestActionSpec;
    1.30 +class CTestSetup;
    1.31 +class CTestSpec;
    1.32 +
    1.33 +
    1.34 +class CHardcodedSetup : public CTestSetup
    1.35 +	{
    1.36 +public:
    1.37 +	/**
    1.38 +	 * This function creates a new CHardcodedSetup object.
    1.39 +	 */
    1.40 +	IMPORT_C static CHardcodedSetup* NewLC();
    1.41 +
    1.42 +public:
    1.43 +	//aTestSpec is the class that holds the array of test actions, and has the GetNextTest function
    1.44 +	//theHardcodedTests is the static array of tests 
    1.45 +	//aCommandLineSettings contains the command line parameters
    1.46 +	IMPORT_C virtual void SetupTestsL(RFs& aFs,	CTestSpec& aTestSpec, THardcodedTests theHardcodedTests[],
    1.47 +		const CTestHandlerSettings & aCommandLineSettings);
    1.48 +	~CHardcodedSetup();
    1.49 +	IMPORT_C TBool InitialiseL(RFs &aFs, const TDesC& aDefaultLog = KNullDesC);
    1.50 +
    1.51 +protected:
    1.52 +	CHardcodedSetup(void);
    1.53 +	
    1.54 +private:
    1.55 +	RFs iFs;
    1.56 +
    1.57 +	};
    1.58 +
    1.59 +#endif