sl@0: /* 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 the License "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: */ sl@0: sl@0: sl@0: #ifndef __TESTHANDLERSETTINGS_H__ sl@0: #define __TESTHANDLERSETTINGS_H__ sl@0: sl@0: #include sl@0: sl@0: /** sl@0: * This class stores the various settings that define the behaviour of sl@0: * the test handler. sl@0: * sl@0: * this is a C-class, but it doesn't derived from CBase! sl@0: */ sl@0: class CTestHandlerSettings sl@0: { sl@0: public: sl@0: /** sl@0: * This function creates a new CTestHandlerSettings object. sl@0: */ sl@0: IMPORT_C static CTestHandlerSettings* NewLC(); sl@0: /** sl@0: * This function creates a new copy of the argument. sl@0: */ sl@0: IMPORT_C static CTestHandlerSettings* NewL(const CTestHandlerSettings& aOther); sl@0: /** sl@0: * The destructor. sl@0: */ sl@0: IMPORT_C ~CTestHandlerSettings(); sl@0: sl@0: private: sl@0: /** sl@0: * The default constructor produces settings adequate for running automated tests. sl@0: * The settings are all set to false. sl@0: */ sl@0: CTestHandlerSettings(); sl@0: /** sl@0: * The second-phase constructor. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: public: sl@0: /** sl@0: * If this is set to ETrue, then at the end of the tests, the handler will not sl@0: * quit immediately : it will wait until the user has pressed a key to quit. sl@0: * This is to allow the user to read the contents of the screen. sl@0: */ sl@0: TBool iWaitForKeyPressAtEnd; sl@0: sl@0: /** sl@0: * Used to hold the bitflag values for the switches read in sl@0: * from the commandline sl@0: */ sl@0: TBool iOOM; sl@0: TBool iCancel; sl@0: TBool iSkip; sl@0: TBool iExhaust; sl@0: TBool iInt; sl@0: }; sl@0: sl@0: #endif