Update contrib.
2 * Copyright (c) 2002-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.
19 #ifndef __T_HARDCODED_H__
20 #define __T_HARDCODED_H__
28 class TTestActionSpec;
30 struct THardcodedTests
32 THardcodedTests(CTestAction* (*aAction)(class RFs &, class CConsoleBase &,
33 class Output &, const class TTestActionSpec &),TPtrC8 aName, TInt aGrouping)
37 //Set the default groupings when reading tests
40 CTestAction* (*action)(class RFs &,class CConsoleBase &,class Output &,const class TTestActionSpec &);
46 #define START_HARDCODED_LIST static THardcodedTests theHardcodedTests[]={
47 // x is the class to create eg. TActionValidate
48 // y is the name we give to the class instance when displaying results
49 // z is the grouping parameter eg. INOOM | SMOKE
50 #define HARDCODED_ITEM(x,y,z) THardcodedTests(&x::NewL,y,z)
51 #define END_HARDCODED_LIST ,THardcodedTests(NULL,_L8(""),0)};