applayerprotocols/httptransportfw/Test/TestScriptTest/TestScriptTestStep.h
changeset 0 b16258d2340f
equal deleted inserted replaced
-1:000000000000 0:b16258d2340f
       
     1 // Copyright (c) 2006-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 #ifndef __TEST_SCRIPT_TEST_STEP_H__
       
    17 #define __TEST_SCRIPT_TEST_STEP_H__
       
    18 
       
    19 // User Include
       
    20 #include "TestScriptTestServer.h"
       
    21 
       
    22 /**
       
    23 The test step that creates a file based on the path and name specified 
       
    24 in the ini file.
       
    25 @internalTechnology 
       
    26 */
       
    27 class CTestScriptTestStep : public CTestStep
       
    28 	{	
       
    29 	public:
       
    30 	CTestScriptTestStep();
       
    31 	
       
    32 	// TEF pure virtual
       
    33 	virtual enum TVerdict doTestStepL();
       
    34 	};
       
    35 
       
    36 /*@{*/
       
    37 // Literal constant defined for identifying step name
       
    38 _LIT(KTestScriptTestStep, "TestScriptTestStep");	
       
    39 /*@}*/
       
    40 
       
    41 #endif		// __TEST_SCRIPT_TEST_STEP_H__
       
    42 
       
    43 
       
    44 
       
    45