sl@0: // Copyright (c) 2008-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: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #include "twservscreenconstructstepload.h" sl@0: #include sl@0: #include //KNullUidValue sl@0: #include sl@0: sl@0: /** sl@0: Constructor of CTWServScreenConstructStepLoad sl@0: */ sl@0: CTWServScreenConstructStepLoad::CTWServScreenConstructStepLoad() sl@0: { sl@0: SetTestStepName(KTWServScreenConstructStepLoad); sl@0: } sl@0: sl@0: /** sl@0: Destructor of CTWServScreenConstructStepLoad sl@0: */ sl@0: CTWServScreenConstructStepLoad::~CTWServScreenConstructStepLoad() sl@0: { sl@0: delete iGc; sl@0: delete iScreen; sl@0: iWinGroup.Close(); sl@0: iWsSession.Flush(); sl@0: iWsSession.Close(); sl@0: } sl@0: sl@0: /** sl@0: Overrides test step preamble. sl@0: */ sl@0: enum TVerdict CTWServScreenConstructStepLoad::doTestStepPreambleL() sl@0: { sl@0: TVerdict ret = CTestStep::doTestStepPreambleL(); sl@0: sl@0: User::LeaveIfError(iWsSession.Connect()); sl@0: sl@0: iScreen = new (ELeave) CWsScreenDevice(iWsSession); sl@0: User::LeaveIfError(iScreen->Construct()); sl@0: iWinGroup = RWindowGroup(iWsSession); sl@0: User::LeaveIfError(iWinGroup.Construct(KNullWsHandle, iScreen)); sl@0: iWinGroup.AutoForeground(ETrue); sl@0: iGc = new (ELeave) CWindowGc(iScreen); sl@0: User::LeaveIfError(iGc->Construct()); sl@0: sl@0: return ret; sl@0: } sl@0: sl@0: /** sl@0: Overrides test step prostamble. sl@0: */ sl@0: enum TVerdict CTWServScreenConstructStepLoad::doTestStepPostambleL() sl@0: { sl@0: return TestStepResult(); sl@0: } sl@0: sl@0: /** sl@0: Starts test step sl@0: @return TVerdict pass / fail sl@0: */ sl@0: enum TVerdict CTWServScreenConstructStepLoad::doTestStepL() sl@0: { sl@0: return TestStepResult(); sl@0: }