Update contrib.
2 * Copyright (c) 1998-2010 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.
19 #ifndef __T_HARDCODEDSETUP_H__
20 #define __T_HARDCODEDSETUP_H__
22 #include "t_testsetup.h"
23 #include "tHardcodedTests.h"
26 class TTestActionSpec;
31 class CHardcodedSetup : public CTestSetup
35 * This function creates a new CHardcodedSetup object.
37 IMPORT_C static CHardcodedSetup* NewLC();
40 //aTestSpec is the class that holds the array of test actions, and has the GetNextTest function
41 //theHardcodedTests is the static array of tests
42 //aCommandLineSettings contains the command line parameters
43 IMPORT_C virtual void SetupTestsL(RFs& aFs, CTestSpec& aTestSpec, THardcodedTests theHardcodedTests[],
44 const CTestHandlerSettings & aCommandLineSettings);
46 IMPORT_C TBool InitialiseL(RFs &aFs, const TDesC& aDefaultLog = KNullDesC);
49 CHardcodedSetup(void);