os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/Ttesthandlersettings.cpp
First public contribution.
2 * Copyright (c) 1998-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 #include "ttesthandlersettings.h"
20 #include "t_bacline.h"
22 _LIT(KWaitForKeyPressAtEndSwitch, "-w");
23 _LIT(KOOMSwitch, "-o");
24 _LIT(KInteractiveSwitch, "-i");
25 _LIT(KCancelSwitch, "-c");
26 _LIT(KSkippedSwitch, "-s");
27 _LIT(KExhaustiveSwitch, "-e");
29 EXPORT_C CTestHandlerSettings* CTestHandlerSettings::NewLC()
31 CTestHandlerSettings* self = new(ELeave) CTestHandlerSettings();
32 CleanupStack::PushL(self);
37 EXPORT_C CTestHandlerSettings* CTestHandlerSettings::NewL(const CTestHandlerSettings& aOther)
39 CTestHandlerSettings* self = new(ELeave) CTestHandlerSettings();
40 self->iWaitForKeyPressAtEnd = aOther.iWaitForKeyPressAtEnd;
41 self->iOOM = aOther.iOOM;
42 self->iCancel = aOther.iCancel;
43 self->iSkip = aOther.iSkip;
44 self->iExhaust = aOther.iExhaust;
45 self->iInt = aOther.iInt;
49 EXPORT_C CTestHandlerSettings::~CTestHandlerSettings()
53 CTestHandlerSettings::CTestHandlerSettings()
55 iWaitForKeyPressAtEnd = iOOM = iCancel = iSkip = iExhaust = iInt = EFalse;
58 void CTestHandlerSettings::ConstructL()
60 CCommandLineArguments* cmdLine = CCommandLineArguments::NewL();
62 TInt argTotal=cmdLine->Count();
64 for (TInt loop=0 ; loop < argTotal ; ++loop)
66 TPtrC arg(cmdLine->Arg(loop));
67 if (arg==KWaitForKeyPressAtEndSwitch)
69 iWaitForKeyPressAtEnd = ETrue;
71 else if (arg==KOOMSwitch)
75 else if (arg==KInteractiveSwitch)
79 else if (arg==KCancelSwitch)
83 else if (arg==KSkippedSwitch)
87 else if (arg==KExhaustiveSwitch)