os/graphics/windowing/windowserver/test/tscreenconstruct/src/twservscreenconstructstepload.cpp
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 "twservscreenconstructstepload.h"
23 #include <test/tefunit.h>
24 #include <e32const.h> //KNullUidValue
28 Constructor of CTWServScreenConstructStepLoad
30 CTWServScreenConstructStepLoad::CTWServScreenConstructStepLoad()
32 SetTestStepName(KTWServScreenConstructStepLoad);
36 Destructor of CTWServScreenConstructStepLoad
38 CTWServScreenConstructStepLoad::~CTWServScreenConstructStepLoad()
48 Overrides test step preamble.
50 enum TVerdict CTWServScreenConstructStepLoad::doTestStepPreambleL()
52 TVerdict ret = CTestStep::doTestStepPreambleL();
54 User::LeaveIfError(iWsSession.Connect());
56 iScreen = new (ELeave) CWsScreenDevice(iWsSession);
57 User::LeaveIfError(iScreen->Construct());
58 iWinGroup = RWindowGroup(iWsSession);
59 User::LeaveIfError(iWinGroup.Construct(KNullWsHandle, iScreen));
60 iWinGroup.AutoForeground(ETrue);
61 iGc = new (ELeave) CWindowGc(iScreen);
62 User::LeaveIfError(iGc->Construct());
68 Overrides test step prostamble.
70 enum TVerdict CTWServScreenConstructStepLoad::doTestStepPostambleL()
72 return TestStepResult();
77 @return TVerdict pass / fail
79 enum TVerdict CTWServScreenConstructStepLoad::doTestStepL()
81 return TestStepResult();