os/graphics/windowing/windowserver/test/tscreenconstruct/src/twservscreenconstructstepload.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/tscreenconstruct/src/twservscreenconstructstepload.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,82 @@
     1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +/**
    1.20 + @file
    1.21 + @test
    1.22 + @internalComponent
    1.23 +*/
    1.24 +
    1.25 +#include "twservscreenconstructstepload.h"
    1.26 +#include <test/tefunit.h>
    1.27 +#include <e32const.h>	//KNullUidValue
    1.28 +#include <gdi.h>
    1.29 +
    1.30 +/**
    1.31 +Constructor of CTWServScreenConstructStepLoad
    1.32 +*/
    1.33 +CTWServScreenConstructStepLoad::CTWServScreenConstructStepLoad()
    1.34 +	{
    1.35 +	SetTestStepName(KTWServScreenConstructStepLoad);
    1.36 +	}
    1.37 +
    1.38 +/**
    1.39 +Destructor of CTWServScreenConstructStepLoad
    1.40 +*/
    1.41 +CTWServScreenConstructStepLoad::~CTWServScreenConstructStepLoad()
    1.42 +	{
    1.43 +	delete iGc;
    1.44 +	delete iScreen;
    1.45 +	iWinGroup.Close();
    1.46 +	iWsSession.Flush();
    1.47 +	iWsSession.Close();
    1.48 +	}
    1.49 +
    1.50 +/**
    1.51 +Overrides test step preamble.
    1.52 +*/
    1.53 +enum TVerdict CTWServScreenConstructStepLoad::doTestStepPreambleL()
    1.54 +	{
    1.55 +	TVerdict ret = CTestStep::doTestStepPreambleL();
    1.56 +
    1.57 +	User::LeaveIfError(iWsSession.Connect());
    1.58 +
    1.59 +	iScreen = new (ELeave) CWsScreenDevice(iWsSession);
    1.60 +	User::LeaveIfError(iScreen->Construct());
    1.61 +	iWinGroup = RWindowGroup(iWsSession);
    1.62 +	User::LeaveIfError(iWinGroup.Construct(KNullWsHandle, iScreen));
    1.63 +	iWinGroup.AutoForeground(ETrue);
    1.64 +	iGc = new (ELeave) CWindowGc(iScreen);
    1.65 +	User::LeaveIfError(iGc->Construct());
    1.66 +
    1.67 +	return ret;
    1.68 +	}
    1.69 +
    1.70 +/**
    1.71 +Overrides test step prostamble.
    1.72 +*/
    1.73 +enum TVerdict CTWServScreenConstructStepLoad::doTestStepPostambleL()
    1.74 +	{
    1.75 +	return TestStepResult();
    1.76 +	}
    1.77 +
    1.78 +/**
    1.79 +Starts test step
    1.80 +@return TVerdict pass / fail
    1.81 +*/
    1.82 +enum TVerdict CTWServScreenConstructStepLoad::doTestStepL()
    1.83 +	{
    1.84 +	return TestStepResult();
    1.85 +	}