Update contrib.
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
23 enum TAccount {ECash=0,EJohn,ESam,EBen,EPenny};
24 const TInt KAccountIDs=EPenny-ECash+1;
26 GLREF_C TInt StartThread(RThread& aThread,TRequestStatus& aStat);
27 GLREF_C TInt Random(TInt aRange);
29 GLREF_D TPtrC KTestDatabase,KTestDir,KLogFile;
30 GLREF_D RTest TheTest;
31 GLREF_D TInt NewCount;
32 GLREF_D TInt OldCount;
45 GLREF_D Timer RunTimer;
48 #define TEST_STRING(s) _S(s)
50 void Check1(TInt aValue, const TText* aFile, TInt aLine);
51 void Check2(TInt aValue, TInt aExpected, const TText* aFile, TInt aLine);
53 #define TEST(arg) ::Check1((arg), TEST_STRING(__FILE__), __LINE__)
54 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, TEST_STRING(__FILE__), __LINE__)