First public contribution.
1 // Copyright (c) 2008-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.
22 #include "teflogextensions.h"
23 #include "screenselect.h"
24 #include "globalsettings.h"
26 //Note that this class now just acts as a stub to the CGlobalSettings::SetScreenNoL() method and data, so both are equivalent.
28 CScreenSelect::CScreenSelect(TInt aScreenNumber, const TDesC& aStepName)
30 SetTestStepName(aStepName);
31 iScreenNumber = aScreenNumber;
34 CScreenSelect::~CScreenSelect()
39 TInt CScreenSelect::Number()
41 return TGlobalSettings::Instance().iScreen;
45 TVerdict CScreenSelect::doTestStepL()
47 SetTestStepError(EFail);
49 CGlobalSettings* globalSettings=new (ELeave) CGlobalSettings;
51 globalSettings->SetLoggerL(Logger());
52 TRAPD(err,globalSettings->SetScreenNoL( iScreenNumber));
56 SetTestStepError(EPass);