--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/appfw/apparchitecture/tef/T_ProStep.h Tue Feb 02 10:12:00 2010 +0200
@@ -0,0 +1,114 @@
+// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
+// All rights reserved.
+// This component and the accompanying materials are made available
+// under the terms of "Eclipse Public License v1.0"
+// which accompanies this distribution, and is available
+// at the URL "http://www.eclipse.org/legal/epl-v10.html".
+//
+// Initial Contributors:
+// Nokia Corporation - initial contribution.
+//
+// Contributors:
+//
+// Description:
+// t_prostep.h
+//
+
+/**
+ @file t_prostep.h
+ @internalComponent - Internal Symbian test code
+*/
+
+#if (!defined __T_PRO_STEP_H__)
+#define __T_PRO_STEP_H__
+
+_LIT(KT_ProStep,"T_Pro");
+
+#include "apparctestserver.h"
+
+#include <apaid.h>
+#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
+#include <apaidpartner.h>
+#include <apgicnflpartner.h>
+#include <apgctllist.h>
+#endif //SYMBIAN_ENABLE_SPLIT_HEADERS
+#include "../apparc/apadll.h"
+#include <apgaplst.h>
+#include <apgicnfl.h>
+#include <apgdoor.h>
+#include <apfrec.h>
+#include <apfctlf.h>
+#include <apgctl.h>
+#include <apgaplst.h>
+#include <apaflrec.h>
+#include <apgcli.h>
+#include <apacmdln.h>
+
+//! A CT_ProStep test class.
+
+/** Tests Application Apparc base classes and utility functions.\n */
+
+class CT_ProStep : public CTestStep
+ {
+public:
+ CT_ProStep();
+ ~CT_ProStep();
+ virtual TVerdict doTestStepPreambleL();
+ virtual TVerdict doTestStepPostambleL();
+ virtual TVerdict doTestStepL();
+ void DoStepTestsL();
+//private:
+ void DoStepTestsInCallbackL();
+ void testAppIdentifierL();
+ void doTestGenerateFileName();
+ void testDocCreationL();
+ void testDocCreation1L();
+ CApaDocument* testDocCreation3L();
+ void testDocCreation2L();
+ void testDocCreation4L(CApaDocument* aDoc);
+ void testEmbeddingL();
+ void testIniFilesL();
+ void testControlsL();
+ void setup();
+ TInt ControlIndexInList(CApaSystemControlList* aList, TBool aIsNewPath);
+ void testControls1L();
+ void testControls2L();
+ void testControls3L();
+ void DoAppListInvalidTestL(RApaLsSession& aLs);
+ void MainDocFileNameTestsL();
+ void testMainDocFileName1L();
+ void testMainDocFileName2L();
+ void testMainDocFileName3L();
+ void testReadStreamL();
+ void testPanicForControlListL();
+ void ClosePanicWindowL();
+
+
+private:
+ RFs iFs;
+ CApaProcess* iProcess;
+ CApaSystemControlList* iControlList;
+ CApaSystemControl* iControl;
+
+ TInt iControlCount1;
+ TInt iControlCount2;
+ TInt iControlCount3;
+
+ TInt iAppListCount;
+ };
+
+
+class CT_ProStepCallBack : public CBase
+ {
+public:
+ CT_ProStepCallBack(CT_ProStep* aTestStep);
+ ~CT_ProStepCallBack();
+ static TInt CallBackL(TAny* /*aThis*/);
+ CT_ProStep* iTestStep;
+
+private:
+ };
+
+#endif
+
+