messagingfw/msgtestfw/TestActions/Base/inc/CMtfTestActionFindFile.h
changeset 0 8e480a14352b
equal deleted inserted replaced
-1:000000000000 0:8e480a14352b
       
     1 // Copyright (c) 2004-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 #ifndef __CMTF_TEST_ACTION_FIND_FILE_H__
       
    18 #define __CMTF_TEST_ACTION_FIND_FILE_H__
       
    19 
       
    20 
       
    21 // User include
       
    22 #include "CMtfSynchronousTestAction.h"
       
    23 
       
    24 /*@{*/
       
    25 // Literal defined for the name of the Test Action
       
    26 _LIT(KTestActionFindFile,"FindFile");
       
    27 /*@}*/
       
    28 
       
    29 
       
    30 /**
       
    31   Implements the test action to check if the specified file is present at 
       
    32   specified path.
       
    33   @internalTechnology
       
    34 */
       
    35 class CMtfTestActionFindFile : public CMtfSynchronousTestAction
       
    36 	{
       
    37 public:
       
    38 	static CMtfTestAction* NewL(CMtfTestCase& aTestCase,
       
    39 								CMtfTestActionParameters* ActionParameters
       
    40 							   );
       
    41 	// Destructor
       
    42 	virtual ~CMtfTestActionFindFile(); 
       
    43 
       
    44 public:
       
    45 	virtual void ExecuteActionL();
       
    46 
       
    47 private:
       
    48 	// Constructor
       
    49 	CMtfTestActionFindFile(CMtfTestCase& aTestCase);
       
    50 	};
       
    51 
       
    52 
       
    53 
       
    54 #endif