First public contribution.
1 // Copyright (c) 2007-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.
14 // Test class that allows a script to set global values
18 #ifndef __GLOBALSETTINGS_H__
19 #define __GLOBALSETTINGS_H__
21 #include <test/tefunit.h>
23 #include <pixelformats.h>
24 class CTestExecuteLogger;
29 static const TGlobalSettings& Instance();
33 TBool iDisconnected; //This value might be changed from CWsDynamicResWinBase::SetupL
34 }; //once the screen has been connected.
36 class CGlobalSettings : public CTestFixture
39 static const TGlobalSettings& Instance();
41 // SetUp and TearDown code
43 // Create a suite of all the tests
44 static CTestSuite* CreateSuiteL(const TDesC& aName);
46 //these tests are public to allow the old CScreenSelect to get to them!
47 void SetScreenNoL(TInt aScreenNo);
48 void ExpectDisconnectedScreenL(TBool aValue);
52 #endif //__GLOBALSETTINGS_H__