sl@0: // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: #ifndef T_DBSTRESS_H sl@0: #define T_DBSTRESS_H sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: enum TAccount {ECash=0,EJohn,ESam,EBen,EPenny}; sl@0: const TInt KAccountIDs=EPenny-ECash+1; sl@0: sl@0: GLREF_C TInt StartThread(RThread& aThread,TRequestStatus& aStat); sl@0: GLREF_C TInt Random(TInt aRange); sl@0: sl@0: GLREF_D TPtrC KTestDatabase,KTestDir,KLogFile; sl@0: GLREF_D RTest TheTest; sl@0: GLREF_D TInt NewCount; sl@0: GLREF_D TInt OldCount; sl@0: GLREF_D TInt TransId; sl@0: sl@0: class Timer sl@0: { sl@0: public: sl@0: void Start(); sl@0: TInt64 Stop(); sl@0: void Print(); sl@0: private: sl@0: TTime iTime; sl@0: }; sl@0: sl@0: GLREF_D Timer RunTimer; sl@0: sl@0: #undef TEST_STRING sl@0: #define TEST_STRING(s) _S(s) sl@0: sl@0: void Check1(TInt aValue, const TText* aFile, TInt aLine); sl@0: void Check2(TInt aValue, TInt aExpected, const TText* aFile, TInt aLine); sl@0: sl@0: #define TEST(arg) ::Check1((arg), TEST_STRING(__FILE__), __LINE__) sl@0: #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, TEST_STRING(__FILE__), __LINE__) sl@0: sl@0: #endif// T_DBSTRESS_H