testexecmdw/tef/tef/tefutilities/platsec/inc/testplatseccleanup.h
branchRCL_3
changeset 3 9397a16b6eb8
parent 1 6edeef394eb7
equal deleted inserted replaced
1:6edeef394eb7 3:9397a16b6eb8
     1 /*
       
     2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  
       
    15 * This contains CTestPlatSecCleanup. This class deletes the extra 
       
    16 * executables which are created with required capabilities 
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 
       
    22 #if (!defined __TEST_PLATSEC_CLEANUP_H__)
       
    23 #define __TEST_PLATSEC_CLEANUP_H__
       
    24 
       
    25 //TEF include
       
    26 #include <test/testexecutestepbase.h>
       
    27 
       
    28 /**
       
    29  This class deletes the executables created with extra capabilities. 
       
    30  The executable name is read from
       
    31  the ini file. The executable "Plattest_Platsec_Cleanup.exe" is used to
       
    32  delete the extra servers .
       
    33 */
       
    34 class CTestPlatSecCleanup : public CTestStep
       
    35 	{
       
    36 public:
       
    37 	//Constructor
       
    38 	CTestPlatSecCleanup();
       
    39 
       
    40 	//Destructor
       
    41 	~CTestPlatSecCleanup();
       
    42 	//Implementation of CTestStep pure virtual funtion
       
    43 	virtual TVerdict doTestStepL();
       
    44 
       
    45 private:
       
    46 	void DeleteExtraServersL(const TDesC& aDestination);
       
    47 	
       
    48 		
       
    49 	};
       
    50 #endif //__TEST_PLATSEC_LAUNCHAPP_H__