appfw/apparchitecture/tef/T_StartAppStep.h
changeset 0 2e3d3ce01487
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 // Copyright (c) 2005-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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @test
       
    19  @internalComponent - Internal Symbian test code 
       
    20 */
       
    21 
       
    22 #if (!defined __T_DATATYPEMAPPINGS_STEP_H__)
       
    23 #define __T_DATATYPEMAPPINGS_STEP_H__
       
    24 
       
    25 #include "testableapalssession.h"
       
    26 #include "appfwk_test_appui.h"
       
    27 
       
    28 _LIT(KT_StartAppStep,"T_StartApp");
       
    29 
       
    30 class CT_StartAppTestStep : public CTestStep
       
    31 	{
       
    32 public:
       
    33 	CT_StartAppTestStep();
       
    34 	~CT_StartAppTestStep();
       
    35 	virtual TVerdict doTestStepPreambleL();
       
    36 	virtual TVerdict doTestStepPostambleL();
       
    37 	virtual TVerdict doTestStepL();
       
    38 	
       
    39 private:
       
    40 	void RunTestCasesL();
       
    41 	void TestStartApp1L();
       
    42 	void TestStartApp2L();
       
    43 	void TestStartApp3L();
       
    44 	void TestStartApp4L();
       
    45 	void TestStartApp5L();
       
    46 	void TestStartApp6L();
       
    47 	void TestStartApp7L();
       
    48 	void TestStartApp8L();
       
    49 	void TestStartApp9L();
       
    50 	void TestInsertDataTypeL();
       
    51 	void TestAppForDataTypeL();
       
    52 	void TestDeleteDataTypeL();
       
    53 	void TestIpcFuzzL();
       
    54 	
       
    55 private:
       
    56 	TFileName SearchAndReturnCompleteFileName(const TDesC& aFileName);
       
    57 	
       
    58 private:
       
    59 	RTestableApaLsSession iApaLsSession;
       
    60 	TFileName iStartAppTestsFilename;
       
    61 	TUid iStartAppTestsUid;
       
    62 	};
       
    63 
       
    64 #endif